html - 单击href链接时如何从uiwebview中删除href灰色选择和闪烁效果?
<p><p>我在 UIWebView 中加载了一些 html 代码,同时单击 href 一些灰色选择显示会产生一种闪烁效果。如何去除效果?</p>
<p>使用 anchor 标记(包含按钮和文本)仅用于观察点击事件以触发某些功能。是否可以使用任何其他容器来获取点击事件?</p>
<p>下面是html代码,</p>
<pre><code>NSString *displayHtmlStr = ;
;
</code></pre>
<p>这是我捕获点击事件的方式,</p>
<pre><code>-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
if(navigationType== UIWebViewNavigationTypeLinkClicked && request.URL lastPathComponent] isEqualToString:@"tag0"])
{
NSLog(@"clicked A");
//Some functionality
}
}
</code></pre>
<p>提前致谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在样式中添加</p>
<pre><code>-webkit-tap-highlight-color: rgba(0,0,0,0);
</code></pre></p>
<p style="font-size: 20px;">关于html - 单击href链接时如何从uiwebview中删除href灰色选择和闪烁效果?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26233143/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26233143/
</a>
</p>
页:
[1]