我运行下一个代码,但我想念一些东西,对我来说似乎还可以:
window.onload = TitleFieldInit;
function TitleFieldInit() {
var str = document.cookie.split("=")[1];
var space = str.split("=")[1];
space = space.split(";")[0];
alert(space);
// while( space.indexOf('%20' )+1) space = space.replace(/%20/,' ');
if (document.cookie != "") {
document.getElementById("TitleField").innerHTML = "Your Title is : " + space;
}
}
我在 FireFox 中出错 rror"space is undefined" 为什么?在 chrome 中“Uncaught TypeError:Cannot call method'split' of Undefined”谢谢帮助。