我的目标是让一个按钮显示另一个按钮。因此,如果我点击按钮#tom
,我希望它显示另一个按钮#bob
。
此刻我的按钮看起来像这样:
<button id="1Container" onClick="pickimg(1);"><img style="cursor:pointer;" src="BicycleBlue_kopi.jpg"></button>
的JavaScript
<script type="text/javascript">
function replaceContentInContainer(the new buttons name, "1Container") {
document.getElementById(the new buttons name).innerHTML =
document.getElementById("1Container").innerHTML;
}
</script>
答案 0 :(得分:0)
您可以直接使用.click功能,使用按钮的ID,如下
$("#1Container").click(function () {
alert("This is hit");
});