错误:点击切换会导致点击跳转到错误空标签

<a href="javascript:void(0);" title="">艺术</a>
<a href="javascript:void(0);" class="hover" title="">文商</a>
<a href="javascript:void(0);" title="">理工</a>
<a href="javascript:void(0);" title="">医药</a>
<a href="javascript:void(0);" title="">艺术</a>

改为:

<a style="cursor:pointer" class="hover" title="">文商</a>
<a style="cursor:pointer" title="">理工</a>
<a style="cursor:pointer" title="">医药</a>
<a style="cursor:pointer" title="">艺术</a>

<!--style="cursor:pointer" 为显示光标小手样式-->

<a href=“javascript:void(0);></a>跳转到错误空标签_webview