如何在HTML中隐藏/禁用内容

时间:2013-07-29 10:16:00

标签: php javascript jquery html jsp

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

注意

请右键单击并查看视图来源。

6 个答案:

答案 0 :(得分: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>

-->

答案 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)

在jquery中使用hide()函数

实施例: -

<a href='test.html' id='link'>hello</a>
$('#link').hide();

答案 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">&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,它会自动消失并消失。

答案 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();
        }
    });
});