如何从 Html 编辑器禁用超链接浏览?
如何禁止从 Html 编辑器浏览 http 链接。当我向 html 编辑器添加超链接时,我有一个带有 html 编辑器的 vb.net Web 表单,例如我的应用程序网站
当我运行并单击链接时,我可以从内部浏览我的应用程序Html 编辑器太奇怪了。它应该在新窗口中打开链接。我该如何阻止这种情况发生。 这是一个内联网应用程序。 Html编辑器的组件是TMS。
或者是否有任何 Javascript 代码可以让我从 HtmlEditor 停用链接,我的意思是当我添加任何超链接时,它不应该被激活,或者不应该能够从 HtmlEditor 内部浏览它?
how do I disable browsing to a http link from a Html editor. I have a vb.net web form with a html editor, when I add a hyperlink to the html editor, for example my application website for instance
When I run and click the link I can browse my application from inside the Html Editor which is so weird.It should open the link in a new window. How do I stop this from happening.
This is an Intranet application. And the component for Html Editor is of TMS.
Or is there any Javascript code available where I can deactivate the link from an HtmlEditor, i mean when i add any hyperlink it should be not be activated , or no should be able to browse it from inside the HtmlEditor ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须访问 JavaScript 中的每个链接并添加取消链接的 onclick 事件。但是,当您保存正在编辑的 HTML 时,您会希望将其从每个链接中删除!
你可以用这样的东西来做到这一点(未经测试):
You would have to visit each link in javascript and add an onclick event that cancels the link. But when you save your HTML that you are editing you'll want to remove that from each link!
You can do it with something like this (untested):
您可以阻止该链接使用 JavaScript 执行任何操作。
在 jquery 中它会是这样的:
you could prevent the link from doing anything with javascript.
in jquery it would go something like this: