指引网

当前位置: 主页 > 网页制作 > WEB开发 >

向编辑器插入指定 并设置编辑器中内容

来源:网络 作者:佚名 点击: 时间:2017-07-19 00:35
[摘要] !doctype html public -//w3c//dtd xhtml 1.0 transitional//en http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml head meta http-equiv=content-type content=text/html; charset=gb2312 / title向编辑器插入指

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>向编辑器插入指定 并设置编辑器中内容</title>
<script>
//向编辑器插入指定代码
function inserthtmltoeditor(codestr){
  var oeditor = fckeditorapi.getinstance("content");
  if (oeditor.editmode==fck_editmode_wysiwyg){
    oeditor.inserthtml(codestr);
  }else{
    return false;
  }
}

//设置编辑器中内容
function setcontents(codestr){
  var oeditor = fckeditorapi.getinstance("content") ;
  oeditor.sethtml(codestr) ;
}


</script>
</head>

<body>
</body>
</html>

------分隔线----------------------------