首頁
新聞
功能
下載
開發
支援
論壇
文件
搜尋
關於我們
歡迎光臨,
訪客
. 請先
登入
或
註冊一個帳號
.
十一月 23, 2024, 01:13:48 上午
19595
文章 在
3865
主題 由
4579
會員
最新註冊會員:
aa123aa1
首頁
說明
搜尋
登入
註冊
LifeType 中文開發論壇
|
開發
|
外掛程式
|
remembercommentdata的一个可能会造成乱码的bug修复
« 上篇主題
下篇主題 »
頁:
[
1
]
列印
作者
主題: remembercommentdata的一个可能会造成乱码的bug修复 (閱讀 7295 次)
Javor
新手見習
文章: 13
remembercommentdata的一个可能会造成乱码的bug修复
«
於:
六月 26, 2007, 12:28:43 下午 »
在remembercommentdata.js里面,对setCookies和readCookies都做编码:
function setCookies() {
var theForm = document.forms['NewComment'];
var theName = theForm.userName.value;
theName = encodeURIComponent(theName);
createCookie("plog_cm_name", theName, 180);
createCookie("plog_cm_email", theForm.userEmail.value, 180);
createCookie("plog_cm_url", theForm.userUrl.value, 180);
return true;
}
function readCookies() {
var theForm = document.forms['NewComment'];
var theName = readCookie("plog_cm_name");
theName = decodeURIComponent(theName);
var theAddr = readCookie("plog_cm_email");
var theUrl = readCookie("plog_cm_url");
theForm.userName.value = (theName==null)?"":theName;
theForm.userEmail.value = (theAddr==null)?"":theAddr;
theForm.userUrl.value = (theUrl==null)?"":theUrl;
}
这样,就不会乱码了。
已記錄
頁:
[
1
]
列印
LifeType 中文開發論壇
|
開發
|
外掛程式
|
remembercommentdata的一个可能会造成乱码的bug修复
« 上篇主題
下篇主題 »
前往:
請選擇目的地:
-----------------------------
站務
-----------------------------
=> 站務公告
=> 站務建議
=> 帳號與文章刪除
-----------------------------
支援
-----------------------------
=> 安裝與設定
=> 使用與操作
=> 虛擬主機討論
=> Instant LifeType 專區
===> 安裝與設定精華區
===> 使用與操作精華區
===> 虛擬主機討論精華區
===> 虛擬主機商自我推薦區
===> Instant LifeType 精華區
-----------------------------
開發
-----------------------------
=> 外掛程式
=> 模版設計
=> 核心補強
=> 手冊文件
=> 中文相關
===> 外掛程式精華區
===> 模版發表
===> 模版設計精華區
===> 核心補強精華區
===> 手冊文件精華區
===> 中文相關精華區
-----------------------------
測試
-----------------------------
=> LifeType 1.0 測試
=> LifeType 1.1 測試
-----------------------------
部落格應用
-----------------------------
=> 教育部落格
-----------------------------
建議
-----------------------------
=> 要求與建議
=> 發表與交流
=> 網誌文化與業界動態
Powered by SMF 1.1.6
|
SMF © 2006-2008, Simple Machines LLC
載入...