我正在尝试使用NicEdit编辑iFrame中的某个div,但它不起作用。
这是我的代码:
<html>
<head>
<title></title>
<script type="text/javascript" src="nicEdit.js"></script>
</head>
<body>
<div id="Panel"></div>
<iframe src="x.html" onload="loadMe(this)"></iframe>
<script type="text/javascript">
var myNicEditor
function loadMe(who){
var x = who.contentWindow.document.getElementById("text")
myNicEditor = new nicEditor()
myNicEditor.setPanel('Panel')
myNicEditor.addInstance(x)
}
</script>
</body>
</html>
NicEdit成功地将div的contentEditable设置为true,但按钮不起作用(fontSize
、fontFamily
、bold
…)。有什么想法吗?
已解决:
在nicEdit.js第578行
将线路替换为:
iFrameID.contentWindow.document.execCommand(cmd,false,args);