这个简单的函数在调用时不会执行。当从函数中取出时,它会运行但不在函数中运行。什么让函数运行?
.HTML
<img id = “hide” src = “mypic.jpg”>
爪哇语
Function show {
var x = document.getElementById(“hide”);
x.style.display = “none”
}
show();
函数的声明错误
Function show {
var x = document.getElementById(“hide”);
x.style.display = “none”
}
show();
应写为:
function show() {
var x = document.getElementById('hide');
x.style.display = 'none';
}
show();
<img id ="hide" src ="https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500" />
你的javascript中有几个小问题,它应该看起来像:
function show() {
var x = document.getElementById(“hide”);
x.style.display = “none”;
}
show();
在你的代码中缺少一些基础知识
- "功能"
必须是"功能"
函数名称必须带括号,即函数名称(){};
你的函数声明必须是这样的 函数 show(){}
然后你必须对一些事件调用相同的函数,如onClick()等。
这是您可以通过JAVASCRIPT访问的链接
希望这对您有所帮助...干杯!