Webview弹出窗口无法正常工作

时间:2012-11-22 12:48:18

标签: android html android-webview

我正在尝试在点击时显示一个弹出对话框,其中包含来自webview的图像。我的问题是弹出对话框没有弹出,但它在webview中打开全屏或在浏览器中打开。是否有可能在webview中弹出?我使用了以下内容 网络设置,但它没有结果。

WebSettings settings = wvcontent.getSettings(); 
settings.setSupportMultipleWindows(true);
settings.setPluginsEnabled(true);
settings.setAllowFileAccess(true);
settings.setJavaScriptEnabled(true); 

这是我的html内容。

html_content =

"<strong>"+title+"</strong>" 
               + " <br><br><img src='"+single_image+" width='300' height='211'>" 
               + "<br> " 
               + ""+ content + "<br>"
               + str 
               + "<div id='popup' style='display:none'>"
               + "<a id='popup-close' href='' class='button'>"
               + "Fermer" 
               + "</a><p><img id='image-placeholder' width='300px';height='250px'  src=''>"

        + "<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js'></script>"
               + "<script type='text/javascript'>
                  $(document).ready( function() {
                        $('.popup-open').click( function(e)" 
               +        "{$('#popup:visible').hide(); 
                         e.preventDefault();

                 $('#image-placeholder').attr('src', $(this).attr('href'));" 
               + "$('#popup').fadeIn('fast');});
                  $('#popup-close').click( function(e) {e.preventDefault();                                                        $('#popup').fadeOut('fast');});});" 
               +"</script>";

有人可以提供一个提示吗?

1 个答案:

答案 0 :(得分:0)

您应该尝试使用模态对话框,而不是执行正常的弹出窗口。这将在活动内容之上的同一页面中打开。我相信,在Android上,你试图用弹出窗口做的事情是不可能的。它们将始终在新窗口中打开。

http://jqueryui.com/dialog/#modal