<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>AppsJavaScript</title>
<!-- WinJS references -->
<link href="//Microsoft.WinJS.2.0/css/ui-dark.css" rel="stylesheet" />
<script src="//Microsoft.WinJS.2.0/js/base.js"></script>
<script src="//Microsoft.WinJS.2.0/js/ui.js"></script>
<!-- AppsJavaScript references -->
<link href="/css/default.css" rel="stylesheet" />
<script src="/js/default.js"></script>
<script type="text/javascript">
(function () {
"use strict";
var app = WinJS.Application;
var activation = Windows.ApplicationModel.Activation;
app.onactivated = function (args) {
if (args.detail.kind === activation.ActivationKind.launch) {
if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {
// TODO: This application has been newly launched. Initialize
// your application here.
} else {
// TODO: This application has been reactivated from suspension.
// Restore application state here.
}
args.setPromise(WinJS.UI.processAll());
// Retrieve the button and register our event handler.
var helloButton = document.getElementById("helloButton");
helloButton.addEventListener("click", buttonClickHandler, false);
}
};
app.oncheckpoint = function (args) {
// TODO: This application is about to be suspended. Save any state
// that needs to persist across suspensions here. You might use the
// WinJS.Application.sessionState object, which is automatically
// saved and restored across suspension. If you need to complete an
// asynchronous operation before your application is suspended, call
// args.setPromise().
};
function buttonClickHandler(eventInfo) {
var userName = document.getElementById("nameInput").value;
var greetingString = "Hello, " + userName + "!";
document.getElementById("greetingOutput").innerText = greetingString;
}
app.start();
})();
</script>
</head>
<body>
<h1>Hello, world!</h1>
<p>What's your name?</p>
<input id="nameInput" type="text" />
<button id="helloButton">Say "Hello"</button>
<div id="greetingOutput"></div>
</body>
</html>
ทดสอบการทำงาน แสดงผลบน Simulator
ทดสอบการทำงาน Input ข้อมูล
โปรแกรมจะแสดงโต้ตอบดังภาพ
จากตัวอย่างนี้เราจะเห็นว่า Code ค่อนข้างจะเยอะพอสมควร แต่รูปแบบการเขียนนี้เป็น Framework ที่ถูกออแบบมาเพื่อให้ JavaScript สามารถทำงานร่วมกับ API ของ WinRT ที่จะสั่งให้ Windows Store Apps ทำงานต่าง ๆ ได้ ซึ่งเราอาจจะใช้การเรียนรู้และปรับตัวให้เข้ากับ Framework บางพอสมควร