我的href属性的锚标记就像<a onclick='loadReview(\"" + strexternalURL + "\");' href='#productName1'
一样,它显示在网址中,如http://localhost:54986/Dealerlist.aspx#productName1
我希望从网址隐藏#productName1 。
我怎样才能做到这一点?
答案 0 :(得分:2)
使用return false语句。像这样:
<a
href='#productName1'
onclick='loadReview(\"" + strexternalURL + "\");return false;'
>
Link
</a>;
答案 1 :(得分:0)
如下所示格式化您的超链接:
<a href="urlGoesHere">TextToDisplayGoesHere</a>