jQuery,获取和设置标签值

发布于 2024-09-24 01:44:30 字数 112 浏览 2 评论 0原文

我有一个

<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 技术交流群。

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

发布评论

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

评论(3

茶色山野 2024-10-01 01:44:30

获取:

$("#test").text();

设置:

$("#test").text("New text");

参考:jQuery API

Get it:

$("#test").text();

Set it:

$("#test").text("New text");

Reference: jQuery API

夏末 2024-10-01 01:44:30
$('#test').text(); // Gets
$('#test').text('hello'); // Sets

花了大约 10 秒钟进入文档 http://jquery.com 并搜索“text”并阅读它。 ..

$('#test').text(); // Gets
$('#test').text('hello'); // Sets

Took about 10 seconds to get into the documentation http://jquery.com and search for "text" and read it...

煮茶煮酒煮时光 2024-10-01 01:44:30

要获取它,您可能需要该号码,因此获取 .text () 并用 parseInt 解析它(),如下所示:

var val = parseInt($("#test").text(), 10);

要设置它,只需将值传递给 .text(),如下所示:

$("#test").text(newVal);

您无法在此处进行测试

To get it, you probably want the number, so get the .text() and parse it with parseInt(), like this:

var val = parseInt($("#test").text(), 10);

To set it just pass the value to .text(), like this:

$("#test").text(newVal);

You cant test it out here.

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