我在jsp中使用图像按钮调用onclick函数javascript,我通过onclick和id调用它:
<img src="<%= imagesDir%>/bt_pre.gif" onclick="return PreviousQ();" id="prevbtn" style="cursor: hand;">
以上行,代码运行良好.. 但我在标签按钮中更新它,似乎无法运行并调用onclick函数javascript ...
<button class="css-button-rounded" onclick="return PreviousQ();" id="prevbtn" style="cursor: hand;">Back question</button>
如何调用onclick =“return PreviousQ();”和id =“prevbtn”?
非常感谢!!
答案 0 :(得分:0)
如果我正确理解问题,你可以用jquery做类似的事情
strawberry
答案 1 :(得分:0)
<img src="http://s5.tinypic.com/15rf4zn_th.jpg" id="prevbtn" style="cursor: hand;">
<button class="css-button-rounded" onclick="document.getElementById('prevbtn').src='http://s5.tinypic.com/vew3n7_th.jpg'"; >Back question</button>