答案 0 :(得分:2)
到目前为止最简单且适用于所有浏览器,请使用HTML注释:
<!--
<font style="TOP: 0%; LEFT: 0%; VISIBILITY: visible; POSITION: absolute;background-color:#ffffff; z-index:111">
<a style="font-family:arial;font-size:12px;text-decoration: none; color: #0000FF;" href="http://hosting.India.to"> Domain Name +
1GB Linux India Web Hosting in Rs.349 </a><font size="4"> </font><br>
</font>
-->
答案 1 :(得分:1)
为你添加id锚并使用id选择器..
$('#anchorId').hide(); //to hide
$('#anchorId').click(function(e){
e.preventDefault();
}); //to disable the link.
或使用CSS
#anchorId{
display:none;
}; //to hide
答案 2 :(得分:1)
答案 3 :(得分:0)
如果您无法对代码发表评论,可以将onpageload attr添加到body并调用javascript函数以不显示锚标记。
<script type="text/javascript">
function Hide() {
document.getElementById('Id_of_anchor_tag').style.display = "none";
}
</script>
答案 4 :(得分:0)
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$(".messages").fadeOut('slow');
});
</script>
<font style="TOP: 0%; LEFT: 0%; VISIBILITY: visible; POSITION: absolute;background-color:#ffffff; z-index:111">
<div class="messages">
<a style="font-family:arial;font-size:12px;text-decoration: none; color: #0000FF;" href="#">welcome</a><font size="4"> </font><br>
</font></div>
这不仅会删除链接,还会显示一条消息WELCOME,它会自动消失并消失。
答案 5 :(得分:0)
使用以下代码隐藏锚点。请注意,这只会隐藏字体标记内的锚点,而不会隐藏其他内容。
$(document).ready( function() {
$("font a").hide();
});
编辑:
要在font
标记内隐藏包含特定网址的非常具体的锚,请使用以下代码 -
$(document).ready( function() {
$("font a").each(function() {
if($(this).attr("href") == "http://hosting.India.to") {
$(this).hide();
}
});
});