WP7 の Web ブラウザー コントロールを使用して、Web ページで JavaScript を使用してアラート ボックスを表示しようとしています。アラートはポップアップしていません。コードに何か問題がありますか、それとも WP7 はそれをまったくサポートしていませんか?
<phone:WebBrowser Name="browser" IsScriptEnabled="True" ScriptNotify="browser_ScriptNotify" Source="Default.html"/>
Default.html 内
<html><br>
<head><br>
</head><br>
<body onload="onLoad()"><br>
<script type="text/javascript"><br>
function onLoad() {<br>
alert("hello");<br>
}<br>
</script><br>
</body><br>
</html>