从中提取内容
我有一个像这样的字符串:
"<![CDATA [Lorem ipsum dolor sit amet, <a href="http://www.google.com">consectetur</a> siptum. adipiscing elit. Phasellus pulvinar hendrerit malesuada. Mauris eget ante nulla. Suspendisse tempus lorem id.]]>"
使用 jquery 我需要提取 内的整个内容。 考虑将整个数据存储在字符串变量中。 请帮我解决这个问题。
I am having a string like:
"<![CDATA [Lorem ipsum dolor sit amet, <a href="http://www.google.com">consectetur</a> siptum. adipiscing elit. Phasellus pulvinar hendrerit malesuada. Mauris eget ante nulla. Suspendisse tempus lorem id.]]>"
using jquery I need to extract the entire content which is inside the <![CDATA []]>
.
consider the entire data to be stored in a string variable.
Please help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用纯 javascript,使用子字符串来完成此操作:
You can do this with pure javascript, using substring: