这是我的网站mycareerpath.co.in。在那我如何从我的网站中删除“免费域 + 1GB 主机”
笔记
请右键单击并查看查看源代码。
到目前为止最简单并且适用于所有浏览器,使用 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>
-->
将 id 添加到您的锚点并使用 id 选择器..
$('#anchorId').hide(); //to hide
$('#anchorId').click(function(e){
e.preventDefault();
}); //to disable the link.
或使用 CSS
#anchorId{
display:none;
}; //to hide
如果您无法评论您的代码,您可以在 body 中添加一个 onpageload attr 并调用一个 javascript 函数以不显示锚标记。
<script type="text/javascript">
function Hide() {
document.getElementById('Id_of_anchor_tag').style.display = "none";
}
</script>
<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,该消息会自动淡出并消失。
使用以下代码隐藏锚点。请注意,这只会隐藏字体标签内的锚点,而不会隐藏其他内容。
$(document).ready( function() {
$("font a").hide();
});
编辑:要隐藏font
包含特定 URL 的标记内非常特定的锚点,请使用以下代码 -
$(document).ready( function() {
$("font a").each(function() {
if($(this).attr("href") == "http://hosting.India.to") {
$(this).hide();
}
});
});