这是我的网站mycareerpath.co.in。在我如何删除“免费域名+1 1GB主机”从我的网站
备注
请点击右键查看查看源码。
发布于 2013-07-29 18:24:21
到目前为止,使用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>
-->发布于 2013-07-29 18:18:36
将id添加到锚点并使用id选择器..
$('#anchorId').hide(); //to hide
$('#anchorId').click(function(e){
e.preventDefault();
}); //to disable the link.或使用CSS
#anchorId{
display:none;
}; //to hide发布于 2013-07-29 18:19:49
在jquery中使用hide()函数
示例:-
<a href='test.html' id='link'>hello</a>
$('#link').hide();https://stackoverflow.com/questions/17921410
复制相似问题