程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> html5-document is not defied是怎麼回事?

html5-document is not defied是怎麼回事?

編輯:編程綜合問答
document is not defied是怎麼回事?

最近在學html5跨文檔通信時,浏覽器報錯:doucument is not defined?求教高手們,這是怎麼回事?
var defaultTitle = "Portal [new message]";
//
var notificationTimer = null;

var trustedOrigin = "http://localhost:8080";
// 消息處理
function messageHandler(e) {
if (e.origin == trustedOrigin) {
notify(e.data);
} else {

}

}
// 處理閃爍
function notify(message) {
stopBlinking();
blinkTitle(message, defaultTitle);
}
// 停止閃爍
function stopBlinking() {
if (notificationTimer != null) {
clearTimeout(notificationTimer);
}
document.title = defaultTitle;
}
// 閃爍的信息
function blinkTitle(m1, m2) {
// ReferenceError: doucument is not defined
doucument.title = m1;
notificationTimer = setTimeout(blinkTitle, 1000, m2, m1);
}

// 信息發送——向iframe
function sendStatus() {
var statusText = document.getElementById("statusText").value;
sendString(statusText);
}
// 消息發送——向iframe
function sendString(s) {
document.getElementById("widget").contentWindow.postMessage(s, trustedOrigin);
}
function loadDemo() {
document.getElementById("sendButton").addEventListener("click", sendStatus, true);
document.getElementById("stopButton").addEventListener("click", stopBlinking, true);
sendStatus();
}
window.addEventListener("load", loadDemo, true);
window.addEventListener("message", messageHandler, true);

最佳回答:


doucument.title = m1;

你拼錯了吧, 應該是 document

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved