jQuery,获取和设置标签值
我有一个
<span id="test">5</span>
,我想得到它的值,5。我想改变这个值。我怎么意识到这一点。
I have a
<span id="test">5</span>
and I wand to get its value, 5. And I want to change that value. how do I realize that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
获取:
设置:
参考:jQuery API
Get it:
Set it:
Reference: jQuery API
花了大约 10 秒钟进入文档 http://jquery.com 并搜索“text”并阅读它。 ..
Took about 10 seconds to get into the documentation http://jquery.com and search for "text" and read it...
要获取它,您可能需要该号码,因此获取
.text ()
并用parseInt 解析它()
,如下所示:要设置它,只需将值传递给
.text()
,如下所示:您无法在此处进行测试。
To get it, you probably want the number, so get the
.text()
and parse it withparseInt()
, like this:To set it just pass the value to
.text()
, like this:You cant test it out here.