jQuery指定别名
时间:2014-04-04 05:52:22
收藏:0
阅读:550
<scripttype="text/javascript">
//给jQuery()函数指定别名为newName
var newName= jQuery.noConflict();
//使用别名 查找元素
var target =
newName("#element");
</script>
原文:http://www.cnblogs.com/tsyblog/p/3642923.html
评论(0)