1

我正在尝试在单击时显示一个弹出对话框,其中包含来自 web 视图的图像。我的问题是弹出对话框没有弹出,但它在 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>";

有人可以提供提示吗?

4

1 回答 1

0

您应该尝试使用模式对话框,而不是做一个普通的弹出窗口。这将在同一页面中打开,位于活动内容的顶部。我相信,在 Android 上,您尝试对弹出窗口进行的操作是不可能的。它们将始终在新窗口中打开。

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

于 2012-11-22T12:59:41.830 回答