回调函数,作用域一定要用一个变量来保存
绑定模态框嵌入页面里的元素的事件
// NoPermissioniframe iframe的id
$("#NoPermissioniframe").on("load", function(event){//判断 iframe是否加载完成 这一步很重要
//注意作用域 this是当前作用域
var that = this
$(".chose_batch_comment", that.contentDocument).click(function(){//添加点击事件
$("input["name = checkbox"]:checked", that.contentDocument).each(function(){})
});
});