0
這是demo,你可以發佈這樣的消息使用代碼:HTML 5中postMessage的用法是什麼?
addEvent(document.getElementsByTagName('form')[0], 'submit', function (e) {
if (e.preventDefault)
e.preventDefault();
win.postMessage(
document.getElementById("message").value,
"http://html5demos.com"
);
// otherwise set the returnValue property of the original event to false (IE)
e.returnValue = false;
return false;
});
但是,爲什麼是這樣有用嗎?
我們應該在哪個地方使用postMessage
?
'win'是javascript中的一個'後臺工作者'。當你需要發送消息給用戶界面時,你可以使用提示信息更新用戶界面上的內容。 – 2010-11-06 10:36:14