有谁知道如何用javascript替换onmousedown值?
例如:
<input style="display:inline" type="text" autocomplete="off" name="endDateAdd" id="endDate" onkeydown="return isNumberKey(event,this)" onmousedown="initCal(this, '{$minCal}', null)" value="{$endDate}">
对于上面的代码,我想替换onmousedown="initCal(this, '{$minCal}', null)" to onmousedown="initCal(this, '', null)"
。有谁知道如何在javascript中做到这一点?
答案 0 :(得分:2)
假设您正在讨论在元素已经在页面上时更改元素的事件处理程序:
document.getElementById('endDate').onmousedown= function() {
initCal(this, '', null);
};