document.getElementById("#zerenren_SS").onclick = function(){
chooseType=2;
<iframe id='myFrame1' name="myFrame1" src="choose_Empl.html" width='100%' height='100%' frameborder='0'></iframe>
// window.location = "choose_Empl.html";
}
通过iframe打开子窗口的时候,js失效了,onclick函数没起作用,请各位大神指教
不。是你js用错了。js和html不能混用。
document.getElementById("#zerenren_SS").onclick = function(){
chooseType=2;
//<iframe id='myFrame1' name="myFrame1" src="choose_Empl.html" width='100%' height='100%' //frameborder='0'></iframe>
var frame = document.createElement("iframe");
frame .width = "100%";
frame .height= "100%";
frame .src = "choose_Empl.html";
document.body.appendChild(frame);
// window.location = "choose_Empl.html";
}
getElementById获取正确?