摘要:
each方法:定义一个空数组,通过each方法,往数组添加ID值;最后将数组转换成字符串后,alert这个值;$(function(){ var arr = []; $(":checkbox").each(function(index){ arr.push(this.id); }); var str = arr.join(","); alert(str);})map方法:将每个:checkbox执行return this.id;并将这些返回值,自动的保存为jQuery对象,然后用get方法将其转换成原生Javascript数组,再使用join方法转换.. 阅读全文
摘要:
">My JSP 'xml.jsp' starting page -->其中jQuery()可替换为快捷方式$(),如果$被其它对象占用,可使用jQuery.noConflict()函数取消快捷方式。jQuery对事件的支持主要包括:bind()--为事件绑定处理程序,如: $("p").bind("mouseenter mouseleave", function(e){ $(this).toggleClass("over"); });unbind()--注销绑定在事件上的处理程序,如:$(doc 阅读全文