如何从输入框中复制以下文本?

发布于 2024-10-16 22:53:09 字数 266 浏览 1 评论 0原文

我有以下输入框...

<input type="text" id="sharees" class="form_field_as">

并且我正在使用以下内容来尝试捕获键入的内容..

var txt2 = $('input[class="form_field_as"]').serialize();

但是,这似乎不起作用。它返回""。我做错了什么?

I've got the following input box...

<input type="text" id="sharees" class="form_field_as">

and I'm using the following to attempt to capture what is typed..

var txt2 = $('input[class="form_field_as"]').serialize();

However, that doesn't seem to be working. it's returning "". What am I doing wrong?

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

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

发布评论

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

评论(2

眼中杀气 2024-10-23 22:53:09

尝试

var txt2 = $('input.form_field_as').val();

或通过 id

var txt2 = $('#sharees').val();

try

var txt2 = $('input.form_field_as').val();

or by id

var txt2 = $('#sharees').val();
乖乖公主 2024-10-23 22:53:09

试试

$(function(){
    $('input.form_field_as').keyup(function(){
        var txt2 = $('input.form_field_as').val();
        $('p').text(txt2);
    })
});

你的代码是错误的。这种类型的写作用于其他属性。对于 id,请使用 #;对于类,请使用 .

http://jsfiddle.net/borayeris/qGT4W/1/

Try

$(function(){
    $('input.form_field_as').keyup(function(){
        var txt2 = $('input.form_field_as').val();
        $('p').text(txt2);
    })
});

Your code is wrong. That type of writing is used for other attributes. For an id use # and for a class use ..

http://jsfiddle.net/borayeris/qGT4W/1/

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