为什么以下内容没有打印到控制台?我无法理解错误是什么..可以有人帮我调试错误。
<script type="text/javascript" src="static/js/scenes/scene_world.js">
//document.write("<button type='button' onclick='click();'>Click Me!</button>");
//document.write("<input id='clickMe' type='button' value='clickme' onclick='lol();' />");
console.log("lol");
</script>
在 scene_world.js 中:
function lol(){
console.log("lol");
}
厌倦了像这样从外部访问它:
<script type="text/javascript" src="static/js/scenes/scene_world.js">
//document.write("<button type='button' onclick='click();'>Click Me!</button>");
//document.write("<input id='clickMe' type='button' value='clickme' onclick='lol();' />");
</script>
<script>
document.write("<input id='clickMe' type='button' value='clickme' onclick='lol();' />");
</script>
但它给了我这个错误:
未捕获的 ReferenceError:未定义大声笑