我有一个
图像的id =" b1"和html p标签,显示数字或文本
当用户点击图像时我想看到它的第二个参数(这里是1)的值被添加到p标签内部html
假设p首先显示为HELLO,点击图像后它应显示为HELLO1
我将此代码用于图像
<img src="images/b_1.png" id="b1" onclick="buttonaction(this,1);"></img>
脚本如下
function buttonaction(id,imported){
id.src="images/b_3.png";
document.getElementById("main_display").innerhtml+=imported;
};
这不起作用。我是新手,也期待一些解释。
答案 0 :(得分:0)
function buttonaction(id,imported){
id.src="images/b_3.png";
document.getElementById("main_display").innerHTML+=imported;
};
应该适合你