<div contenteditable="true">ff2兼容问题
<divcontenteditable="true"style="width:500px;height:400px;border:2pxsolid#000;"></div...
<div contenteditable="true" style="width:500px; height:400px; border:2px solid #000; "></div>
求解ff2兼容
谢谢 展开
求解ff2兼容
谢谢 展开
1个回答
展开全部
FF不支持contenteditable属性
可用下面的方法来实现兼容
<iframe id="eidt" src="about:blank" style="width:500px; height:400px; border:2px solid #000;"></iframe>
<script type="text/javascript">
window.onload = function(){
document.getElementById("eidt").contentWindow.document.designMode = "on";
document.getElementById("eidt").contentWindow.document.contentEditable = true;
}
</script>
可用下面的方法来实现兼容
<iframe id="eidt" src="about:blank" style="width:500px; height:400px; border:2px solid #000;"></iframe>
<script type="text/javascript">
window.onload = function(){
document.getElementById("eidt").contentWindow.document.designMode = "on";
document.getElementById("eidt").contentWindow.document.contentEditable = true;
}
</script>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询