如何从输入框中复制以下文本?
我有以下输入框...
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
或通过 id
try
or by id
试试
你的代码是错误的。这种类型的写作用于其他属性。对于 id,请使用
#
;对于类,请使用.
。http://jsfiddle.net/borayeris/qGT4W/1/
Try
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/