jquery只能像php使用(int)获取数字一样获取数字吗?

发布于 2024-12-04 14:41:39 字数 217 浏览 1 评论 0原文

有没有办法jquery只能获取数字,就像php如何使用(int)获取数字一样?

如果我试图获取包含字符串和数字的文本,

<div class='selector'>(4)</div>

$('.selector').text().int();

是否有类似于仅获取数字 4 的文本?

感谢您的帮助!

Is there a way jquery can only get numbers like how php can get numbers by using (int)?

If I'm trying to get a text that has string and numbers

<div class='selector'>(4)</div>

$('.selector').text().int();

is there anything similar to that where it should obtain only the number 4?

Thanks for your help!

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

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

发布评论

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

评论(2

花开柳相依 2024-12-11 14:41:39

parseInt() 应该可以解决问题。示例(来自链接页面):

parseInt('123.45')  // 123
parseInt('77')      // 77
parseInt('077',10)  // 77
parseInt('77',8)    // 63  (= 7 + 7*8)
parseInt('077')     // 63  (= 7 + 7*8)
parseInt('77',16)   // 119 (= 7 + 7*16)
parseInt('0x77')    // 119 (= 7 + 7*16)
parseInt('099')     // 0 (9 is not an octal digit)
parseInt('99',8)    // NaN (0 in very old browsers e.g. MSIE 3.0)
parseInt('0.1e6')   // 0
parseInt('ZZ',36)   // 1295 (= 35 + 35*36)

当然,您可以将变量以及字符串放入 parseInt() 中。

正如 zerkms 在评论中所说,您实际上并不需要 jQuery 来执行此操作。 JavaScript 比 jQuery 拥有更多的功能;-)

parseInt() should do the trick. Examples (from the linked page):

parseInt('123.45')  // 123
parseInt('77')      // 77
parseInt('077',10)  // 77
parseInt('77',8)    // 63  (= 7 + 7*8)
parseInt('077')     // 63  (= 7 + 7*8)
parseInt('77',16)   // 119 (= 7 + 7*16)
parseInt('0x77')    // 119 (= 7 + 7*16)
parseInt('099')     // 0 (9 is not an octal digit)
parseInt('99',8)    // NaN (0 in very old browsers e.g. MSIE 3.0)
parseInt('0.1e6')   // 0
parseInt('ZZ',36)   // 1295 (= 35 + 35*36)

Of course, you can put variables inside parseInt() as well as strings.

As zerkms says in the comments, you don't actually need jQuery to do this. JavaScript has more functionality than jQuery would have you believe ;-)

清晨说晚安 2024-12-11 14:41:39

在 JavaScript 中有一个名为 parseInt() 的函数。

In javascript there is a function named parseInt().

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