1
iframe的屬性是designMode =「on」。 在Internet Explorer中使用@按iframe中的某些文本時。 它會自動將其轉換爲mailto:
鏈接。如何在IE中取消mailto iframe designMode =「on」
例如[email protected]
變成mailto:[email protected]
我該如何取消?
感謝
iframe的屬性是designMode =「on」。 在Internet Explorer中使用@按iframe中的某些文本時。 它會自動將其轉換爲mailto:
鏈接。如何在IE中取消mailto iframe designMode =「on」
例如[email protected]
變成mailto:[email protected]
我該如何取消?
感謝
可以在IE 9做到這一點,後來與document.execCommand()
(MSDN):
document.execCommand("AutoUrlDetect", false, false);
現場演示:http://jsfiddle.net/3ELJD/1/
在早期版本的IE瀏覽器,你就必須刪除鏈接自己。