0
我正在寫一個webOS應用程序,我想要下面的代碼來呈現「早安!」信息。我需要在我的Main-scene.html文件中放置哪些代碼,以及在Main-assistant.js文件中需要哪些代碼才能使其工作?如何在我的webOS應用程序中顯示此JavaScript消息?
非常感謝提前。
MainAssistant.prototype.welcomeMessage = function(){
datetoday = new Date();
timenow = datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 18)
display = "Evening";
else
if (thehour > 12)
display = "Afternoon";
else
display = "Morning";
var greeting = ("Good " + display + "!");
document.write(greeting);
};
所有最優秀的
大衛