0
我剛剛開始使用Google協作平臺,經歷了一段非常令人沮喪的時間,HTML Box沒有運行任何Javascript(似乎沒有人使用它),我已經開始使用Google小工具。gadgets.MiniMessage不是構造函數
我正在運行以下簡單代碼作爲Hello World的下一步,並從Firefox Web控制檯收到錯誤「gadgets.MiniMessage不是構造函數」;即使使用Google文檔中的ModulePrefs設置也是如此。
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="HTML5 Test" />
<Require feature="minimessage"/>
<Content type="html">
<![CDATA[
<script>
alert("FFS Do Something");
var msg = new gadgets.MiniMessage(__MODULE_ID__);
if (window.File && window.FileReader && window.FileList && window.Blob)
{
msg.createDismissibleMessage("HTML5 is supported.");
}
else
{
msg.createDismissibleMessage("HTML5 is NOT supported by this browser.");
}
</script>
]]>
</Content>
</Module>
任何人都可以協助什麼可能是簡單的,我失蹤?