开发者

Remove hyperlinks in uiwebview

开发者 https://www.devze.com 2023-01-19 14:14 出处:网络
I am trying to load a html page through UIWebview.I need to disable all the hyperlinks in webview and make its color to normal text color i.e i need to disable 开发者_开发技巧webpage detection.Is that

I am trying to load a html page through UIWebview.I need to disable all the hyperlinks in webview and make its color to normal text color i.e i need to disable 开发者_开发技巧webpage detection.Is that possible

Thanks in advance


Use this UIWebView method

– stringByEvaluatingJavaScriptFromString:

To use Javascript.

Then use "document.getElementsByTagName('a')" to get an Array of elements and do want you want (change the href, change the color etc.)

0

精彩评论

暂无评论...
验证码 换一张
取 消