Onclick 扩展输入宽度

发布于 2024-12-20 18:08:25 字数 211 浏览 0 评论 0原文

我有一个以给定宽度扩展输入的函数,我的问题是如何修改该函数,以便仅当我的输入的值和输入类型不同于 type="submit" 时才执行。我不想为每个输入使用类或 id,因为我的应用程序上有很多输入。

这是一个例子: http://jsfiddle.net/DCjYA/81/

I have a function that expand input with a given width, my problem is how to modify that function in order to be executed only when I have a input with value and input type different than type="submit". I don't want to use classes or ids for each input because I have a lot of input on my app.

Here is an example:
http://jsfiddle.net/DCjYA/81/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回首观望 2024-12-27 18:08:25

我已经更新了代码 http://jsfiddle.net/DCjYA/84/ 需要使用过滤器 $ ('输入[类型!=提交]')

i have updated the code http://jsfiddle.net/DCjYA/84/ need to use filter $('input[type!=submit]')

梦初启 2024-12-27 18:08:25

不确定这是否是您想要的,但是,您不能使用 jquery val() 函数吗?你的例子修改了..

$('input[type!="submit"]').focus(function() {
    if ($(this).val().trim() != "") { 
        $(this).attr('data-default', $(this).width());
        $(this).animate({
            width: 300
        }, 'slow');
    }
}).blur(function() { /* lookup the original width */
    var w = $(this).attr('data-default');
    $(this).animate({
        width: w
    }, 'slow');
});

Not sure this is what you want but, Can you not use the jquery val() function? Your example modified..

$('input[type!="submit"]').focus(function() {
    if ($(this).val().trim() != "") { 
        $(this).attr('data-default', $(this).width());
        $(this).animate({
            width: 300
        }, 'slow');
    }
}).blur(function() { /* lookup the original width */
    var w = $(this).attr('data-default');
    $(this).animate({
        width: w
    }, 'slow');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文