gpt4 book ai didi

javascript - 为什么第二个事件没有开始?

转载 作者:行者123 更新时间:2023-11-30 23:42:50 25 4
gpt4 key购买 nike

请帮我弄清楚为什么第二个事件没有开始( full code )

<input type="submit" value="disabled:false" />

$(function(){
$('input:submit').bind({
mouseover : function(){
$('input:submit').each(function(){
$(this).attr('disabled', 'disabled');
$(this).val('disabled:' + $(this).attr('disabled'));
});
},
mouseout : function(){
$(this).removeAttr('disabled');
$(this).val('disabled:' + $(this).attr('disabled'));
}
});
});

最佳答案

因为您在 mouseover 处理程序中禁用了该控件,所以输入消息被抑制,并且 mouseout 永远不会触发。

关于javascript - 为什么第二个事件没有开始?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4069307/

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