1.elem.checked 有两个值,true,false 。
页面中<input type="checked" checked="checked"> 默认选中,只作用一次
2. 如果页面中含有iframe 不能通过 id直接获取 iframe中的dom,两种方式,一种是知道了iframe的id的,如下;另一种直接在元素节点上绑定事件 :<a onclick="test()">
$("#IFrame").contents().find("#angel").val();
时间: 2024-11-02 20:21:02