0

这是我的网站mycareerpath.co.in。在那我如何从我的网站中删除“免费域 + 1GB 主机”

笔记

请右键单击并查看查看源代码。

4

6 回答 6

2

到目前为止最简单并且适用于所有浏览器,使用 HTML 注释:

<!-- 

<font style="TOP: 0%; LEFT: 0%; VISIBILITY: visible; POSITION: absolute;background-color:#ffffff; z-index:111">&nbsp;
<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"> &nbsp; </font><br>
</font>

-->
于 2013-07-29T10:24:21.320 回答
1

将 id 添加到您的锚点并使用 id 选择器..

$('#anchorId').hide(); //to hide

 $('#anchorId').click(function(e){
     e.preventDefault();
 }); //to disable the link.

或使用 CSS

 #anchorId{
   display:none;
 }; //to hide
于 2013-07-29T10:18:35.870 回答
1

hide()在jquery中使用函数

例子:-

<a href='test.html' id='link'>hello</a>
$('#link').hide();
于 2013-07-29T10:19:48.820 回答
0

如果您无法评论您的代码,您可以在 body 中添加一个 onpageload attr 并调用一个 javascript 函数以不显示锚标记。

<script type="text/javascript">
function Hide() {
    document.getElementById('Id_of_anchor_tag').style.display = "none";

}
</script>
于 2013-07-29T10:29:32.480 回答
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">&nbsp;
<div class="messages">
<a style="font-family:arial;font-size:12px;text-decoration: none; color: #0000FF;" href="#">welcome</a><font size="4"> &nbsp; </font><br>
</font></div>

这不仅会删除链接,还会显示一条消息 WELCOME,该消息会自动淡出并消失。

于 2013-07-29T10:31:11.247 回答
0

使用以下代码隐藏锚点。请注意,这只会隐藏字体标签内的锚点,而不会隐藏其他内容。

$(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();
        }
    });
});
于 2013-07-29T10:31:52.710 回答