1

我目前正在使用webview. 当有人点击热点时,我想getdir.html在同一页面上的某种弹出窗口中打开另一个名为的 html 页面。我猜我需要使用 JavaScript,但我对 JavaScript 完全陌生。我怎样才能做到这一点?

这是我的 webview 代码:

    webView = (WebView) findViewById(R.id.webView1);
    WebSettings webSettings = webView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    webSettings.setBuiltInZoomControls(true);
    webView.requestFocusFromTouch();
    webView.requestFocus(View.FOCUS_DOWN);
    webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
    webView.loadUrl("file:///android_asset/imagemap.html");

这是我的图像地图:

      <html>
        <body>

        <img src="bed_sa.png"
         border="0"

        usemap ="#imgmap2" />

<script>
function openPopup(url) {
    window.open(url, "popup_id", "width=100,height=200");
    return false;
}
</script>

        <map id="imgmap2" name="imgmap2">
<area shape="rect" alt="first place" title="" coords="139,310,167,342" href="getdir.html" onclick="return openPopup(this.href);" target="" />
<area shape="rect" alt="sec place" title="" coords="142,543,171,571" href="getdir.html" onclick="return openPopup(this.href);" target="_self" />
<area shape="rect" alt="thirrd palce" title="" coords="331,630,358,658" href="getdir.html" onclick="return openPopup(this.href);" target="_self" />
       </map>
         </body>
        </html>

编辑
我尝试在 JavaScript 中打开弹出窗口,当我单独单击 html 时,它在我的计算机上运行良好,但在设备上使用 webview 时却不行。

我究竟做错了什么?

4

1 回答 1

0

试试这个javascript:

alert("your text here")
于 2012-05-05T18:07:12.500 回答