如何删除所有锚点 +来自 Textaea 的锚文本?
我在文本区域中收到类似的内容:
`Some text <a href="">Click me!</a>`
如何从 < 中删除包含的所有字符
Click me!
> 使用 javascript
replace
方法或使用类似的方法?
I'm getting something like this in a textarea:
`Some text <a href="">Click me!</a>`
how can I remove all chars included Click me!
from < to >
using javascript
replace
method or using something similar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将涵盖最有可能的情况。您可能不应该将此概括为更多虽然情况复杂。
这并不能取代 需要清理您的输入服务器端。事实上,如果可能的话,上述操作应该在服务器端完成,并且仅当这是现成的博客软件并且您无法修改时才使用 JavaScript 方法(无论如何可能会被垃圾邮件机器人忽略)它。
will cover the most likely cases. You probably shouldn't generalize this to a more complex situation though.
This does not replace the need to sanitize your input on the server side. In fact, the above should probably be done on the server side if at all possible, and a JavaScript approach (probably ignored by the spam bots anyways) used only if, say, this is off-the-shelf blogging software and you cannot modify it.
你可以检查这个google caja 插件 用于清理输入。但!您也必须在服务器端清理您的输入。
you can check this google caja plugin to sanitize the input. BUT! you MUST sanitize your input on the server side too.