javascript的console.log用法

f1.html代码

<iframe id="frame2" name="frame1" src="ww.html"></iframe>
<script type="text/javascript">
function ss(){
console.log($('#frame1')) // 打印信息
$f = $('#frame2')[].contentDocument.documentElement.innerText; // 获取子窗口内容信息
alert($f);
}
setTimeout(ss,);
</script>

ww.html代码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body> </body>
</html>

使用  console.log($('#frame1'))  查看参数

javascript的console.log用法

获取值的方法

$f = console.log($('#frame1')[].contentDocument.documentElement.innerHTML);

$f = console.log($('#frame1')[].contentDocument.documentElement.innerText);

$f = $('#frame2')[].contentDocument.documentElement.innerText;
上一篇:Visual studio智能感知挡住了当前代码输入行


下一篇:解决若要安装 Microsoft Office 2010,需要MSXML 版本 6.10.1129的问题