gpt4 book ai didi

javascript - 在元素上添加事件监听器 - Javascript

转载 作者:可可西里 更新时间:2023-11-01 01:50:39 27 4
gpt4 key购买 nike

有没有办法让我从 onload 函数中监听 javascript 中的 onblur 或 onclick 事件?而不是在元素本身中进行。

<input type="button" id="buttonid" value="click" onclick="func()">

变成这样

function onload() {
var button = document.getElementById("buttonid");
button.addEventListener("onclick", function() { alert("alert");});
}

编辑

<html>

<head>

<script>

function onload() {

var button = document.getElementById("buttonid");

if(button.addEventListener){
button.addEventListener("click", function() { alert("alert");});
} else {
button.attachEvent("click", function() { alert("alert");});
};
};

window.onload = onload;


</script>

</head>

<body>

<input type="button" id="buttonid" value="click">


</body>

</html>

更新

 <script type="text/javascript">

function on_load() {

var button = document.getElementById("buttonid");

if(button.addEventListener){
button.addEventListener("click", function() { alert("alert");});
} else {
button.attachEvent("click", function() { alert("alert");});
};
};

window.onload = on_load();


</script>

最佳答案

你这样做的方式很好,但是你的 click 事件监听器应该是这样的:

button.addEventListener("click", function() { alert("alert");});

注意,click 事件应该附加"click",而不是"onclick"

你也可以尝试用老方法来做:

function onload() {
var button = document.getElementById("buttonid");
// add onclick event
button.onclick = function() {
alert("alert");
}
}

更新 1

您还需要监控 IE < 9,因为这些 V 使用 attachEvent()。像这样附加事件,因此它可以与恐龙浏览器一起使用:

if(button.addEventListener){
button.addEventListener('click', function() { alert("alert");});
} else if(button.attachEvent){ // IE < 9 :(
button.attachEvent('onclick', function() { alert("alert");});
}

更新2

根据您的编辑,此 应该有效 works just fine .

<html>
<head>
<script type="text/javascript">
function init() {
var button = document.getElementById("buttonid");
if(button.addEventListener){
button.addEventListener("click", function() { alert("alert");}, false);
} else if(button.attachEvent){
button.attachEvent("onclick", function() { alert("alert");});
}
};
if(window.addEventListener){
window.addEventListener("load", init, false);
} else if(window.attachEvent){
window.attachEvent("onload", init);
} else{
document.addEventListener("load", init, false);
}
</script>
</head>
<body>
<input type="button" id="buttonid" value="click">
</body>
</html>

请不要使用 window.onload = on_load();,这将防止所有其他 onload 事件监听器被触发,否则您将面临事件风险听众被覆盖。考虑按照我上面建议的方式附加 onload 事件。

关于javascript - 在元素上添加事件监听器 - Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6445207/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com