juqery常用代码

1、复选框勾选
$(this).next().find("[name='userIds']").attr("checked", $(this).attr("checked")=="checked");           


2、iframe窗口得到父窗口
$("[name=dataIds]:checked",parent.document).clone(true).appendTo($("#checkBoxList"))         


3、在父窗口得到iframe窗口
$(window.frames["iframe1"].document)e");

你可能感兴趣的:(代码)