前天,美工作做了一个用户申请界面,用的事163editor这个网页编辑器,之前没有用过
,呵呵呵。body中这样引用编辑器的
<tr>
<td width="70" valign="top">备 注:</td>
<td width="552" height="320"><iframe src="editor/editor.html?id=content" id="subtitle" name="subtitle" frameborder="0" scrolling="no" width="552" height="320"></iframe></td>
</tr>
在js中,不知道该怎么获取编辑框中的内容,在网上一个高手的引导下,我用了大半天的时间,终于搞明白了,呵呵
用js,通过这两行代码可以获得其内容
var a =window.frames['subtitle'].document.getElementById('sourceEditor').value;
alert(a);
163editor中,引用的是editor.html这个页面,打开这个页面可以发现
if(document.all){
document.write('<textarea ID="sourceEditor" style="height:280px;width:100%;display:none">');
}else{
document.write('<textarea ID="sourceEditor" style="height:282px;width:100%;display:none">');
}
这两行代码,估计通过textrea保存专递内容的,网页编辑器一般都少不了它。可以通过父窗体访问子窗体frame的内容
window.frames['subtitle'].document.getElementById('sourceEditor').value
,好了,可以看到alert的值,到此告一段落。
这次的效果是,无形中把frame框架字符窗体传值问题弄明白了,呵呵
总归,是有进步的
每天就不一点点,我信心成为一名优秀的软件工程师,会很快实现