jquery只能像php使用(int)获取数字一样获取数字吗?
有没有办法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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
parseInt() 应该可以解决问题。示例(来自链接页面):
当然,您可以将变量以及字符串放入
parseInt()
中。正如 zerkms 在评论中所说,您实际上并不需要 jQuery 来执行此操作。 JavaScript 比 jQuery 拥有更多的功能;-)
parseInt() should do the trick. Examples (from the linked page):
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 ;-)
在 JavaScript 中有一个名为 parseInt() 的函数。
In javascript there is a function named parseInt().