gpt4 book ai didi

javascript - 绑定(bind)多个事件时调用特定函数

转载 作者:行者123 更新时间:2023-11-29 22:24:31 28 4
gpt4 key购买 nike

我有一个站点范围的 JS,它为各种事件创建监听器,但在某些情况下我需要调用特定的函数,例如在下面的代码中,我需要调用函数 call,但是它没有被调用。

<html>
<head>
<script>
window.onload = function ()
{
var inputs = document.getElementsByTagName("input");
var len = inputs.length;

for (var i=0; i < len; i++)
{
if (inputs[i].getAttribute("type") == "text")
{
var element = inputs[i];

element.onfocus = function()
{
var id = element.getAttribute("id");
alert(id);
}
}
}
}

function call(element)
{
element.value="";
}
</script>
</head>
<body>
<input type="text" name="myvar1" value="same content" id="noviceid" onfocus="call(this);">
<input type="text" name="myvar2" value="same content" id="noviceid" onfocus="call(this);">
</body>
</html>

请推荐。我想同时调用 onfocus。我是 JavaScript 的新手。

最佳答案

因此,一旦您的页面已加载(使用适当的 call onfocus 处理程序),您运行 window.onload 将覆盖所有这些处理程序。我想这不是你打算做的。相反,如果可能,您可以使用 DOM2 事件:

element.addEventListener("focus", function(event) 
{
var id = event.target.getAttribute("id");
alert(id);
}, false);

关于javascript - 绑定(bind)多个事件时调用特定函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10398762/

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