如何获得当前页面的webviewid

如何获得当前页面的webviewid,第1张

现在窗口代码中获取WebView对象,WebViewmyWeb=(WebView)findViewById(RidmyWeb);再使用getUrl()方法获取当前网址myWebgetUrl();

thisURL = documentURL;

thisHREF = documentlocationhref;

thisSLoc = selflocationhref;

thisDLoc = documentlocation;

thisTLoc = toplocationhref;

thisPLoc = parentdocumentlocation;

thisTHost = toplocationhostname;

thisHost = locationhostname;

thisTitle = documenttitle;

thisProtocol = documentlocationprotocol;

thisPort = documentlocationport;

thisHash = documentlocationhash;

thisSearch = documentlocationsearch;

thisPathname = documentlocationpathname;

thisHtml = documentdocumentElementinnerHTML;

thisBodyText = documentdocumentElementinnerText;//获取网页内容文字

thisBodyText = documentbodyinnerText;//获取网页内容文字

WebView(网络视图)能加载显示网页,可以将其视为一个浏览器。它使用了WebKit渲染引擎加载显示网页,实现WebView有以下两种不同的方法:

第一种方法的步骤:

1在要Activity中实例化WebView组件:WebView webView = new WebView(this);

2调用WebView的loadUrl()方法,设置WevView要显示的网页:

互联网用:webViewloadUrl(">

mWebViewsetWebViewClient(new WebViewClient(){

// 这个方法在用户试图点开页面上的某个链接时被调用

@Override

public boolean shouldOverrideUrlLoading(WebView view, String url) {

if(url!=null) {

// 如果想继续加载目标页面则调用下面的语句

// viewloadUrl(url);

// 如果不想那url就是目标网址,如果想获取目标网页的内容那你可以用>

最近几年都很流行hybrid开发模式,这样就少不了native和Html界面的一些交互,或者方法的调用。

微信的分享火热我想也说大部门app模仿的一个典范。今天我们就说微信分享的一个细节。

我们浏览朋友的朋友圈后,如果想分享到自己朋友圈,那我们就需要知道webview 的title 和 image,问题来了,我们怎么知道呢?

分享界面

以前我没有接触过的时候感觉好神奇啊,微信好强大啊,这个也可以,但是最近无意才发现很简单,就是一句话二句话的问问题。

具体废话不多说了。直接先看代码吧。

[html] view plain copy 在CODE上查看代码片派生到我的代码片

selftitle = [_webView stringByEvaluatingJavaScriptFromString:@"documenttitle"];

NSLog(@"title===%@",selftitle);

NSString articleImageUrl = [_webView stringByEvaluatingJavaScriptFromString:@"documentimages[0]src"];

NSLog(@"imageurl===%@",articleImageUrl);

在控制台再看看我们的输出结果:

[html] view plain copy 在CODE上查看代码片派生到我的代码片

2014-06-24 19:31:19182 DemoApp[734:60b] title===百度一下

2014-06-24 19:31:19183 DemoApp[734:60b] imageurl===>

以上就是关于如何获得当前页面的webviewid全部的内容,包括:如何获得当前页面的webviewid、获取webView中网页的内容、Android 中 Webview 怎么获取打开的网页的 HTML 代码等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9686792.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存