0
好吧,這是我的代碼。我試圖讓它嵌入基於Windows 8.1應用程序的屏幕分辨率的網頁,但我如何回憶我的.js腳本中的變量。x-ms-window命令拉和鏈接屏幕分辨率的
<body>
<script>
function myFunction() {
var x = screen.width;
var y = screen.height;
document.getElementById('insert').width = x;
document.getElementById('insert').height = y;
}
</script>
<x-ms-webview id="insert" src="http://subgamer.com" width=0 height=0 ></x-ms-webview>
請碼解釋一起!