文章列表
jQuery中1.2版本之后引入了命名空间。这个一般小型项目很少用到,但是在框架中用得较多,如Bootstrap的jquery插件。
命名空间的好处是可以集中,分开解绑。在下面的例子中,element收到click, click.ns1, click.ns2, click.ns1.ns2和click.ns2.ns1都将执行绑定的函数。
$('#element').on('click.ns1.ns2', function(e){
});
<html>
<head>
<title>Event Name Sp ...
今天看了一下Bootstrap的Jquery插件代码,看到满篇的:
+function ($) { "use strict";
//代码
}(jQuery);
对这个“+” 加号很好奇,平时我们都是用如下形式,为什么要用个加号呢?
(function ($) { "use strict";
//代码
})(jQuery);
百度到一篇好文章:http://www.swordair.com/blog/2011/10/714/,里面很专业比较了括号和其他符号的优劣。
原来只是个人偏好,没太大的性能差异,当然ch ...
在Linux下,如何用MYSQL命令导出数据
mysqldump -uUserName -pPassword DatabaseName| gzip > dumpFileName.sql.gz
1.1 如何给Grails设置代理
Step 1:在http://www.51proxy.net/http_fast.html上找一个Web代理,现在确定可以用来访问grails.org的Web代理是,服务器地址:221.179.35.72,端口号:80;
Step 2:开始->运行->CMD;输入如下命令:
grails add-proxy client "--host=221.179.35.72" "--port=80"
grails set-proxy client
1.2 如何在IntelliJ中给JVM设置代理
...
在:/grails-app/conf/BootStrap.groovy 中作如下设置:
def init = { servletContext ->
System.setProperty("socksProxyHost", '127.0.0.1');
System.setProperty("socksProxyPort", '7070');
}
1. Go to WHM -> Software -> EasyApache
2. proceed through to step 5 of EasyApache
3. Click on Exhaustive Options List
4. Check the box for GD
5. Save & Build.
File menu -> Settings -> Editor -> Virtual Space and uncheck 'Allow placement of caret after end of line' .
Person.withCriteria {
or {
and {
eq 'lastName', 'Winter'
eq 'firstName', 'Johnny'
}
and {
eq 'lastName', 'Brown'
eq 'firstName', 'Jeff'
}
}
}
上面的语言将对应如下SQL语句
select ...
首先来理解三个概念,这三个概念并不是现在某些标准概念中的定义,而是精简整合之后的。但绝不会跟现有概念相冲突。所以理解之后,完全可以出去唬唬“专业人士”的,只要你发自肺腑语气坚定,因为实际上完全搞清这些 ...
import net.sf.json.JSONArray
import net.sf.json.JSONObject
import net.sf.json.JSON
import net.sf.json.JSONFunction
def fromList = [1,true,'json'] as JSONArray
def fromMap = [integer:1, bool: true] as JSONObject
def strAsJson1 = "{integer:1, bool: true}" as JSON
def strAsJ ...
【来源】http://www.cnblogs.com/Athrun/archive/2011/08/15/2139571.html jquery : http://api.jquery.com/category/manipulation/style-properties/
【转载】http://blog.csdn.net/wangjj_016/article/details/5304784
开发中常使用<a>标签代替button,好处在于可以利用a:hover样式做mouseover效果,但下面的代码在IE6下就有问题,onclick中的请求被aborted。
<a href="javascript:void(0);" onclick="$('current').src='images/001.jpg';">切换图片</a>,IE6下图片不显示。
<a href=&quo ...
今天在调试一个DOM操作的时候,发现在IE下,通过JS动态的往p标签中添加li子节点时将出错(不是有意添加,是调一个函数的时候发现了)。如果把p标签改为span,div等都不是问题。哪位能否解释一下原因?
<html>
<head>
<title>p标签中,js设置li子元素出错</title>
</head>
<body>
<p id="pTag"></p>
<script language="javascript"> ...