jQuery中filter(),not(),split()使用方法_jquery【点击查看详情】
jQuery中filter(),not(),split()使用方法_jquery:filter()和not(): 代码如下: $(document).ready(function() { //输出 hello alert($(p).filter(.selected).html()); //输出 How are you alert($(p).not(.selected).html()); }); Hel