菜鸟教程 tryjs_invoke_function_3 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <p>在 HTML 中 <b>this</b> 的值, 在全局函数是一个 window 对象。</p>
<p id="demo"></p>
<script>
function myFunction() {
	return this;
}
document.getElementById("demo").innerHTML = myFunction(); 
</script>