更改電話fnChange後的onclick參考js函數內部動態
<html>
<script>
function fn1(event)
{
alert("in fn1"+event.id);
}
function fn2(event)
{
alert(event.id);
}
function fnChange(event)
{
alert(event.id +" "+event.name);
event.onclick=fn1;
//without passing parameter ,the code works.I dono how to change the reference to fn1 along with the variable passed
}
</script>
<body>
<button id="b1" name="b1Name" onclick="fnChange(this);">The time is?</button>
</body>
</html>
我想,每一個點擊按鈕應該與buttonReference作爲參數傳遞沿打電話FN1。
感謝和問候, 溼婆RV
你好,我想改變參考。我的意思是在b1按鈕被點擊一次之後,它不應該調用函數fnChange,否則它應該調用函數fn1。 –