jQuery()方法的第二个参数详解
关于jQuery()方法的第二个参数,有下面这几种用法:
1.jQuery(selector,[context])
这种用法,相当于$(context).find(selector)或者context.find(selector)
2.jQuery(html,[ownerDocument])
文档对ownerDocument的解释是:“创建DOM元素所在的文档”
也就是说,如果你要编写挎document的脚本,比如iframe或者用window.open开一个新窗口,可能会用得着它
3.jQuery(html,props)
这个应该比较常用了,直接贴代码:
$("<input>",{ type:"text", val:"Test", focusin:function(){ $(this).addClass("active"); }, focusout:function(){ $(this).removeClass("active"); } }).appendTo("form")
也就是说,props内的属性会像.attr()方法一样,被设置到新创建的标签内
以上所述就是本文的全部内容了,希望大家能够喜欢。