如何在锚标记中隐藏#div与href属性

时间:2013-12-15 06:47:06

标签: javascript jquery html asp.net css

我的href属性的锚标记就像<a onclick='loadReview(\"" + strexternalURL + "\");' href='#productName1'一样,它显示在网址中,如http://localhost:54986/Dealerlist.aspx#productName1我希望从网址隐藏#productName1 。 我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:2)

使用return false语句。像这样:

<a 
  href='#productName1' 
  onclick='loadReview(\"" + strexternalURL + "\");return false;'
>
  Link
</a>;

答案 1 :(得分:0)

如下所示格式化您的超链接:

<a href="urlGoesHere">TextToDisplayGoesHere</a>