标签: javascript html ios uiwebview
我希望有一个使用锚标记但不使用链接的UIWebView。
如下所示:
<div name='my-anchor'>here is the target</div>
使用:
/url#my-anchor
这可能吗?有没有更好的方法来解决这个问题?
看到你能做到这一点
var x=document.getElementById('mi1566'); x.scrollIntoView();
但在页面底部有混合结果。
-thx
答案 0 :(得分:0)
w3schools表示名称属性仅用于 a 锚点。 div标记不包含(也不支持) name属性。
我过去通常做的是:
<a name="my-anchor"> </a> <div class='mydiv'>here is the target</div>