- 浏览: 78202 次
最新评论
文章列表
Bootstrap version: 3.1.1
<div class="modal fade" id="revECheModal" tabindex="-1" role="dialog" aria-labelledby="revECheModTitle" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-con ...
$("#btnLogin").on("click", function(e) {
e.preventDefault();
ControlLogin.requestLogin();
});
$("#login-form").submit(function(e){
e.preventDefault();
ControlLogin.requestLogin();
});
<form id="login-form">
<di ...
HTTP Status 500 - The Struts dispatcher cannot be found.
严重: Servlet.service() for servlet [jsp] in context with path [/demo-echeque-web] threw exception [The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Struts tags are only usable ...
#UPDATE:2013-12-07 12:16
127.0.0.1 localhost
#SmartHosts START
#Google Services START
203.208.46.200 0.docs.google.com
203.208.46.200 0.drive.google.com
203.208.46.200 1.docs.google.com
203.208.46.200 1.drive.google.com
203.208.46.200 10.docs.google.com
203.208.46.200 10.drive.google. ...
刚看到 windows 8.1 with update 出来了
果断装两个试试看, 虽然windows 8 我用了不够一个星期,对于微软这次的新系统, 我还是有点期待的
装好了 嘿嘿 不过发现激活的密钥还是可以用工具查看。。。
百度一下 原来可以删除密钥信息的,嘿嘿 这样子安全点。。。对得起我 98rmb的windows 8 密钥
console.exe 右键管理员身份运行,输入 slmgr /cpky 回车即可。。。。嘿嘿
现在看不到我的密钥吧
2014-4-9 10:07:12 org.apache.catalina.core.AprLifecycleListener init
信息: Loaded APR based Apache Tomcat Native library 1.1.29 using APR version 1.4.8.
2014-4-9 10:07:12 org.apache.catalina.core.AprLifecycleListener init
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false] ...
2014-4-8 11:31:32 org.apache.catalina.core.StandardWrapperValve invoke
严重: Servlet.service() for servlet default threw exception
java.lang.IllegalStateException
at org.apache.catalina.connector.ResponseFacade.sendError(ResponseFacade.java:407)
at org.apache.struts2.dispatcher.Dispatcher.sendEr ...
//创建数据库samDatabase,如果已有数据库,不需要此操作
mysql>create database samDatabase
//授权user1用户拥有samDatabase数据库的所有权限,但只能在本地访问。
mysql>grant all privileges on samDatabase.* to 'user1'@localhost identified by 'yourpassword';
//刷新系统权限表
mysql>flush privileges;
//指定部分权限给user1
mysql>grant select,upda ...
往注册表 regedit.exe 的制定位置插入如下内容Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Sublime Text 2]
@="Sublime Text 2"
[HKEY_CLASSES_ROOT\*\shell\Sublime Text 2\command]
@="D:\\devTools\\sublimeText\\sublime_text.exe %1"
请根据你的安装路径修改
好不容易有时间可以休整一下我的知识。。。 今天有空研究了一下怎么绿色安装Eclipse插件
Eclipse 版本: 3.4+
1. 准备link文件:tomcat.link
path=../eclipsePlugins/tomcat
至于 tomcat 目录下该放什么就不解释了。。。自行谷歌。。。
2. 放在 eclipse 目录 /dropins,切记,勿放在links文件夹内!!!
用命令 eclipse -clean 启动 Eclipse 即可
当你需要删除该插件的时候,只要删除该l ...
JSP页面和官方的API没什么区别,关键在JS代码控制上:
// 找到触发点击事件
$("#perInfoPanel, #otpPanel, #secQuePanel").on("click", function (e) {
// 获取当前点击触发的panel body
var currPanel = $(this)[0].hash;
// 如果有 in 样式 说明该 panel 是已经打开的
if ($(currPanel).hasClass('in')) {
// 阻止默认操作
...
a : function () {
$.ajax({
url : 'xxxxxxxx.action',
method : 'post',
success : function (data) {
if (data.success == "true") {
var profiles = data.profiles;
for (var i=0;i<profiles.length;i++) {
if (profiles[i].profileType == "sms&quo ...
苦逼啊,,,以前JQ学不好,现在就看着API写代码。。。
1. 实现监控内容是否修改,如果修改了,button 就 enable,可以提交
$(document).ready(function () {
$(function () {
var jsonFormInit = $("form").serialize();
$("input, textarea, select").change(function () {
var jsonFormCurr = $("form").seria ...