實際安裝測試, 答案是不行的, 它必須在Integrated mode下才能執行, 而IIS 6未提供Integrated mode, 只有IIS 7以上才提供, 而且Server 2003是無法昇級IIS 6 到 IIS 7, 只好在Windows 2008 Server 上安裝了.
搜尋此網誌
2012年12月31日 星期一
網頁中使用 jQuery 第一步
在加入 jQuery library file 後, 開始運用 jQuery 先在 head 中加入以下function:
$(document).ready(function(){
//你的初始 jQuery or JavaScript code here....
});
以上的 function 會在網頁所有的 elements 都 load 完後才呼叫.
$(document).ready(function(){
//你的初始 jQuery or JavaScript code here....
});
以上的 function 會在網頁所有的 elements 都 load 完後才呼叫.
設定 CLEditor 內容時注意事項
問題點: 網頁進入編輯模式, 欲設定CLEditor的內容時沒有作用, 或秀前一次的內容.
解決方法:
只要在設完值後呼叫refresh() method 即可.
Example:
//設定CLEditor的內容
$("#txtContent").val('test');
//Refresh
$("#txtContent").cleditor()[0].refresh();
如此, CLEditor的編輯框便會顯示設定的內容了~
解決方法:
只要在設完值後呼叫refresh() method 即可.
Example:
//設定CLEditor的內容
$("#txtContent").val('test');
//Refresh
$("#txtContent").cleditor()[0].refresh();
如此, CLEditor的編輯框便會顯示設定的內容了~
訂閱:
文章 (Atom)