我加载了一个页面视图,并显示该页面,我想选中一个复选框并单击该Web视图上的元素
<html>
<body>
<div>
<object onload="check();" id = "pageweb" type="text/html"
data="http://pageIload" width="800px" height="600px"
style="overflow:auto;border:5px ridge blue">
</object>
</div>
<script>
function check(){
document.getElementById("pageweb").getElementById("condition").checked = true;
}
</script>
<iframe id="content" src="about:blank"></iframe>
</body>
</html>
页面加载后,我调用函数javascript check()
我加载的页面上的ckeckbox ID为= condition,所以我想检查
我该怎么做?
任何帮助将不胜感激。