2

这似乎应该工作,但没有。我不确定问题出在哪里——要么我做错了,要么我可能有语法错误。我只是什么都不做。我试图在单击按钮时更改当前图片。我是 Javascript 的初学者,所以请保持温和 ;) 谢谢!

<html>
<script>
function pictureChange()
{
document.getElementById(theImage).src="http://31.media.tumblr.com/fca646cd8fe87906e605ad7e8d039903/tumblr_mmoz4fWT6U1soh1p8o1_500.png");
}
</script>
<body>
<img id="theImage" src="http://31.media.tumblr.com/18b5f8f0a00ad01e50f7ae2f513be52d/tumblr_msqcl4iwM01soh1p8o1_500.png">
<p><input type="button" id="theButton" value="click me!" onclick="pictureChange()"></p>
</body>
</html>
4

4 回答 4

4

你错过了.getElementById('theImage')

 function pictureChange()
    {
    document.getElementById('theImage').src="http://31.media.tumblr.com/fca646cd8fe87906e605ad7e8d039903/tumblr_mmoz4fWT6U1soh1p8o1_500.png";
    }
于 2013-10-26T17:08:21.843 回答
2

添加"到参数并在行尾getElementById删除:)

<script>
    function pictureChange()
    {
          document.getElementById("theImage").src="http://31.media.tumblr.com/fca646cd8fe87906e605ad7e8d039903/tumblr_mmoz4fWT6U1soh1p8o1_500.png";
    }
</script>

http://jsfiddle.net/cDd8J/ - 这里。有用。

theImage只是元素的 id,而不是变量,所以你必须把它放在引号中。

于 2013-10-26T17:08:43.253 回答
0

您可以尝试很多方法。使用内联属性调用函数或使用脚本中的 id 调用它。这是一种,

theButton.onclick = function pictureChange()
{
   document.getElementById("theImage").src="http://31.media.tumblr.com/fca646cd8fe87906e605ad7e8d039903/tumblr_mmoz4fWT6U1soh1p8o1_500.png";
}

演示

于 2013-10-26T17:13:44.907 回答
0

您可以使用内联 HTML<img src="img1.jpg" onclick="this.src='img2.jpg'">效果最好。

于 2016-11-19T13:33:48.187 回答