我正在尝试使用 TypeScript 创建 Win 8 应用程序 .. 我想制作母版页 .. 所以我所做的是使用这段代码
<head>
<script>
function OpenContent(item) {
$("#Master").load('Views/' + item);
}
</script>
</head>
<body>
<h1>TypeScript HTML App</h1>
<input type="button" onclick="OpenContent('UsersPage.html');" name="name" value="Users" class="btn btn-primary" />
<div id="Master">
Loading...
</div>
</body>
我在使用此代码加载内容时遇到了安全问题,但我用这个解决了
现在的问题是'UsersPage.html'中的内部代码没有运行..我做了这样的事情
// this is UsersPage.html
<script>
$(document).ready(function () {
document.getElementById("divList").innerHTML = "<a href='http://www.google.com'>Google</a>";
});
</script>
<div>
<div style="width:100%;height:300px; background-color:lightblue;" id="LayoutRoot">
<div id="divList" class="col-lg-3" style="height:100%;width:100%; background-color:red;">
</div>
</div>
</div>
但它根本没有触发..内容加载成功但仍然是空的你 :)