本文介绍了避免转换文本链接即 contentEditable 模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 contenteditable div 中,在 IE 文本中,如http://blablabla"、www.blablabla"、bla@blabla"" 等自动转换为超链接 http://blablabla, www.blablabla、bla@blabla.我怎样才能避免这种情况?
In contenteditable div, in IE text like "http://blablabla", "www.blablabla", "bla@blabla" and so on automatically transforms into hyperlinks http://blablabla, www.blablabla, [email protected] can I avoid this?
推荐答案
很遗憾,没有跨版本的解决方案.在 IE9 中有机会,允许禁用自动超链接:
Unfortunately, there is no cross-version solution.In IE9 there is opportunity, allowing to disable automatic hyperlinking:
document.execCommand("AutoUrlDetect", false, false);
更多信息:http://msdn.microsoft.com,http://bytes.com
这篇关于避免转换文本链接即 contentEditable 模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!