我正在尝试通过Javascript更改Button的onclick值。但是在我更改其值的那一刻,该函数直接执行。
document.getElementById('Send')。disabled = false; document.getElementById('Send')。addEventListener(“click”,window.location.href ='http://www.google.com');
答案 0 :(得分:0)
第二个参数必须是一个函数!尝试:
document.getElementById('Send')
.addEventListener("click",
function(){window.location.href = 'http://www.google.com'});