gpt4 book ai didi

jquery - 聚焦/模糊不开火

转载 作者:太空宇宙 更新时间:2023-11-04 12:22:59 43 4
gpt4 key购买 nike

我正在开发一个使用旧版 jQuery 1.3.2 的元素。我需要在 focusblur 输入值并在 focusout 上返回它(如果没有改变)(不能使用 placeholder在这里)。

这就是我正在做的:

console.log('start');
$('input[type=text]').live('focus', function() {
console.log('focused');
if (!$(this).data('defaultText')) $(this).data('defaultText', $(this).val());
if ($(this).val()==$(this).data('defaultText')) $(this).val('');
});
$('input[type=text]').live('blur', function() {
console.log('blurred');
if ($(this).val()=='') $(this).val($(this).data('defaultText'));
});

我在控制台中看到了 start,但是没有关注输入。我应该在这里更改什么?

最佳答案

您可以使用 jquery bind在 jquery 1.3.2 中

$('input[type="text"]').bind('focus',function() {
console.log('focused');
});
$('input[type=text]').bind('blur', function() {
console.log('blurd');
});

Demo

关于jquery - 聚焦/模糊不开火,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28229678/

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