//首先在HEAD區加入要引用的JS
<head>
<script type="text/javascript" src="FCKEditor/fckeditor.js"></script>
<script type="text/javascript" language="javascript">
function check()
{
// 取得FCKEditor的值,GetInstance(arg),這里的參數arg是FCKeditor實例名;
//如聲明FCKeditor用var oFCKeditor = new FCKeditor('FCKEditor1',500,200,'Board'),則此時arg就是FCKEditor1;
var checkContent1 =FCKeditorAPI.GetInstance("FCKEditor1").GetXHTML();
if (checkContent1 == "")
{
strErr += '評論內容不能為空!\n\n';
alert(strErr);
}
}
</script>
</head>
<%-- 把這段寫在需要顯示FCKEditor編輯框的地方 --%>
<div class="FCKeditor">
<script type="text/javascript">
var sBasePath = "FCKEditor/";
var oFCKeditor = new FCKeditor('FCKEditor1',500,200,'Board'); //實例名為FCKEditor1
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.Create() ;
</script>
</div>
<%-- 用于提交內容的按鈕,響應點擊事件為 check() --%>
<input id="Button1" value="button" type="button" onclick="check()" />
轉自:http://hi.baidu.com/myaspdotnet/blog/item/0b73cd3f0ab9f3c77c1e714a.html
轉自:http://hi.baidu.com/myaspdotnet/blog/item/0b73cd3f0ab9f3c77c1e714a.html