使用 jQuery 选择数字
在给定的 DIV 中,我希望将 SPAN 应用于所有数字,并且仅应用于它们。有没有办法用 jQuery 选择数字?
In a given DIV I wish to apply a SPAN to all numbers and only them. Is there a way to select numbers with jQuery ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery 不提供本地文本选择器,但可以实现这种效果。我根据我对 上一个问题的回答改编了此内容,将其设计为不会破坏 URL 中带有数字的任何链接(jsFiddle 演示) :
jQuery doesn't provide native selectors for text, but it is possible to achieve that effect. I adapted this from my answer to a previous question, designing it to not mangle any links with numbers in the URL (jsFiddle demo):
不,jQuery 不提供针对文本节点的选择器功能...您可以循环遍历
.contents()
并根据需要操作文本节点,但 jQuery 在这里没有多大帮助。例如:
您可以在此处进行测试,请注意,任何此类方法都有缺点,您更改
.innerHTML
,这将破坏所有事件处理程序、附加行为等。仅当内容仅文本时才使用此选项首先。No, jQuery provides no selector functionality against text nodes...you can loop through the
.contents()
and manipulate textnodes as you want, but jQuery won't help much here.For example:
You can test it out here, note that there are drawbacks to any approach like this, you're changing the
.innerHTML
which will destroy any event handlers, attached behaviors, etc. Only use this if the content is only text to begin with.你必须使用常规的旧 JavaScript。也许使用正则表达式来查找所有数字,并将它们替换为包裹在它们周围的 span 标签。
您可以将“str”替换为某些元素的内容。假设您想对
页面
编辑中的所有元素执行此操作:您都输入太快
You'd have to use regular old javascript. Perhaps use a regular expression to find all numbers and replace them with span tags wrapped around them.
you'd replace "str" with the contents of some elements. So let's say you wanted to do this over all
elements in your page
edit: you all type too fast