我正在尝试在用户点击图片时显示文字,但无法使其正常工作。有人可以帮助我,我正在使用JavaScript。
由于
答案 0 :(得分:1)
在这里,and an example:
<img src='http://placehold.it/350x150' onclick='alert("Text appears...")'/>
Here's another example showing how you can do the alert and write text to a div,因为警报价值有限。你也可以写到div
答案 1 :(得分:0)
如果您使用HTML编写,Mikeb的代码可以正常工作。如果您使用的是Javascript并且引用了您的元素:
var imgElement = document.getElementByID('WhateverYouPutAsTheID') //or get ref some other way
imgElement.onclick = function() { alert('Message you want to display'); };
我希望这适合你!