jquery 空不工作

发布于 2024-10-01 02:48:07 字数 481 浏览 3 评论 0原文

任何人都明白为什么这不能按预期工作!?

$('.project_ref_input').val().empty();

我尝试过 .text() 和 .empty()...没有运气!?

.project_ref_input是输入的类

这是完整的jquery代码:

$('.project_ref_input').live('change',function(){ 
                var project_ref_input=$(this).val();
                $(this).next().replaceWith("<p>" + project_ref_input + "</p>");
                $('.project_ref_input').val().empty();
            });

Anyone see why this wouldnt work as intended!?

$('.project_ref_input').val().empty();

I've tried with .text() and just with .empty()...no luck!?

.project_ref_input is the class of the input

This is the complete jquery code:

$('.project_ref_input').live('change',function(){ 
                var project_ref_input=$(this).val();
                $(this).next().replaceWith("<p>" + project_ref_input + "</p>");
                $('.project_ref_input').val().empty();
            });

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

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

发布评论

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

评论(3

追我者格杀勿论 2024-10-08 02:48:07

它不起作用,因为 val 不返回 jQuery 对象,而是返回字符串。要设置值,请将其作为参数传递给 val。尝试:

$('.project_ref_input').val('');

It doesn't work because val doesn't return a jQuery object, but a string. To set a value, pass it to val as the argument. try:

$('.project_ref_input').val('');
贩梦商人 2024-10-08 02:48:07

或者:

$('.project_ref_input').removeAttr('value');

http://api.jquery.com/removeAttr/

Or:

$('.project_ref_input').removeAttr('value');

http://api.jquery.com/removeAttr/

骄兵必败 2024-10-08 02:48:07

尝试删除 .val(),因为 .val() 返回字符串,我们没有可用于字符串 is javascript 的空函数

Try by removing .val(), since .val() returns string, we don't have empty function available for string is javascript

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文