我创建了新的Windows 8 HTML 5应用程序。我添加了jquery文件。但Hello World!
TextBox
MainPage.xaml.cs中
private void Browser_Loaded(object sender, RoutedEventArgs e)
{
// Add your URL here
Browser.IsScriptEnabled = true;
Browser.Navigate(new Uri(MainUri, UriKind.Relative));
}
HTML
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="/html/css/phone.css" />
<title>Windows Phone</title>
<script type="text/javascript" src="~/Scripts/jquery-2.0.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function (){
$("#test").val("Hello World!");
});
</script>
</head>
<body>
<div>
<p>Climate</p>
</div>
<div id="page-title">
<p>My Climate</p>
<input type="text" id="test" />
</div>
</body>
</html>
答案 0 :(得分:2)
我的猜测是脚本URI中的“〜/”未正确解释或URI不正确。我知道jQuery在W8应用程序中运行得很好。
答案 1 :(得分:0)
我只是将其移动到您应用的路径目录,或相对引用该文件。