我有一个index.html页面,其调用JavaScript,使一个Ajax请求寻找本地.html文件这个文件是在我的C#项目的内容和JavaScript火WP8 WebBrowser控件内进口。
问题是,AJAX的函数返回一个拒绝访问错误。 我能做什么?
对不起,我的蹩脚的英语
在Ajax请求真:通过添加isLocal解决
$.ajax({
url: "page.html",
dataType: "html",
async: false, // Otherwise Android 2.2 doesn't show menu
isLocal: true, // Or Windows Phone will say "Access is denied" to ajax request
success: function(html) {
//success code!
}
});