gpt4 book ai didi

javascript - 如何在 android 的 Webview 中使用 Javascript 加载 HTML 代码

转载 作者:行者123 更新时间:2023-12-02 19:06:36 24 4
gpt4 key购买 nike

我有一个 HTML 代码,其中包含下面给出的 java 脚本。

<!DOCTYPE html>
<html>
<body style = "text-align:center">
<script>

var out = '';
for (var counter = 1; counter <= 10; counter++)
{
out += '<img src="http://shiaislamicbooks.com/books_snaps/UR335/'+counter+'.jpg"alt="Page No:'+counter+'" height="100%" width="100%" />';
}
document.write(out);
</script>
</body>
</html>

我只想使用 loadDataWithBaseURL(null, htmlString ,"text/html", "UTF-8", null); 方法将其加载到我的 android 的 webview 中

  • 简而言之,我需要的是如何在 htmlString 中转换上述 HTML 代码(具有 java 脚本循环),以便我可以将其插入 loadDataWithBaseURL(null, htmlString ,"text/html", "UTF-8", null); 方法灵活

谢谢

最佳答案

下面的代码 fragment 可以帮助你......

      webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
//webView.loadUrl("http://www.google.com");

String customHtml = "<html><body><h1>Hello, WebView</h1></body></html>";
webView.loadData(customHtml, "text/html", "UTF-8");

关于javascript - 如何在 android 的 Webview 中使用 Javascript 加载 HTML 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14252451/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com