我想在点击一次后禁用href
,是否可以使用javascript或jquery完成?
请帮忙。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns ="http://www.w3.org 1999 xhtml" xml :lang="en">
<head>
<style>
a:link{
color:#1DAAA1;
}
a:visited{
color:green;
}
a:hover{
background: #ff0000;
color: #FFF;
}
</style>
</head>
<body>
<table width="500" align="center" border="5px solid">
<tr align="center" >
<td><a href="http://www.google.com.my/" onclick="return false"> Google </a></td>
<td><a href="http://www.yahoo.com/"> Yahoo </a></td>
<td><a href="http://www.bing.com/"> Bing </a></td>
<td><a href="http://en.wikipedia.org/wiki/Main_Page"> Wikipedia </a></td>
<td><a href="https://www.facebook.com/"> Facebook </a></td>
</tr>
</table>
</body>
</html>
答案 0 :(得分:41)
纯JavaScript解决方案:
<script>
function clickAndDisable(link) {
// disable subsequent clicks
link.onclick = function(event) {
event.preventDefault();
}
}
</script>
<a href="target.html" onclick="clickAndDisable(this);">Click here</a>
答案 1 :(得分:5)
试试吧......
a:visited {
color:green;
pointer-events: none;
cursor: default;
}
答案 2 :(得分:5)
这是一种使用 jQuery 的简单方法,可以防止链接双击:没有onclick
属性,id
不是必需的,没有href
删除。
$("a").click(function (event) {
if ($(this).hasClass("disabled")) {
event.preventDefault();
}
$(this).addClass("disabled");
});
提示:您可以使用任何选择器(例如button
,input[type='submit']
等),它会起作用。
答案 3 :(得分:1)
这次我尝试用Javascript ...希望它能帮助你:)只需在所需的href标签的“onclick()”中调用以下函数......
function check(link) {
if (link.className != "visited") {
//alert("new");
link.className = "visited";
return true;
}
//alert("old");
return false;
}
赞<a href="#" onclick="return check(this);">link here</a>
并参见演示here
答案 4 :(得分:1)
纯JavaScript解决方案,允许用户只关注一次网址:
<a id="elementId"
href="www.example.com"
onclick="setTimeout(function(){document.getElementById('elementId').removeAttribute('href');}, 1);"
>Clik and forget</a>
点击后,这将删除href属性(等待1 ms以允许原始操作开始)使链接保持静默。与Dineshkani建议的类似,但最初的答案导致一些浏览器根本不采取行动。
答案 5 :(得分:0)
您可以使用jquery
<a href='http://somepage.com' id='get' onlick='$("#"+this.id).attr("href","")'>Something to be go </a>
或使用javascript
<a href='http://somepage.com' id='get' onlick='document.getElementById(this.id).removeAttribute("href");'>Something to be go </a>
答案 6 :(得分:0)
基于Ayyappan Sekar的回答,我刚刚使用jQuery做了一些非常相似的事情:
$('#yourId').click(function (e) {
if(!$(this).hasClass('visited'))
{
$(this).addClass('visited')
return true;
}
else
{
$(this).removeAttr("href"); // optional
// some other code here
return false;
}
});
答案 7 :(得分:0)
在html和css中复制相同的div,重复的div必须低于原始的div:z-index = -1或/和position:absolute。
制作原始div onclick =“HideMe(this)”
JS:
<script type="text/javascript">
function HideMe(element){
element.style.display='none';
}
</script>
这可能不是最好的方式,但可实现100%的目标。
答案 8 :(得分:0)
我想在这里留下一个示例,该示例适用于我与IFrame一起使用的Knockout.js,但是由于IFrame不适用于本地文件,因此我使用div制作了该示例。
单击链接时,将调用该函数,如在内部带有alert()
注释所示,但是当您在输入对话框中拨打某些内容并再次单击链接时,Knockout.js不会更新div。 ,仅当您单击另一个调用相同功能但参数不同的链接时。
<html>
<head>
<script type="text/javascript" src="http://knockoutjs.com/downloads/knockout-3.2.0.js"></script>
</head>
<body>
<div>
<a href="javascript:fAlter(2)">Page 2</a>
</div>
<div>
<a href="javascript:fAlter(3)">Page 3</a>
</div>
<div data-bind="bindHTML: dados"></div>
<script type="text/javascript">
function myPage2(nPage) {
var cPage = '<div>Pagina 2</div>';
if (nPage == 3) { cPage = '<div>Pagina 3</div>' }
cPage += '<input type="text" id="fname" name="fname">';
//alert('clicked!');
return cPage
}
var viewModel = {
dados : ko.observable()
}
ko.bindingHandlers.bindHTML = {
init: function () {
// Prevent binding on the dynamically-injected HTML (as developers are unlikely to expect that, and it has security implications)
return { 'controlsDescendantBindings': true };
},
update: function(element, valueAccessor, allBindings, viewModel, bindingContext) {
// setHtml will unwrap the value if needed
ko.utils.setHtml(element, valueAccessor());
var elementsToAdd = element.children;
for (var i = 0; i < elementsToAdd.length; i++) {
ko.cleanNode(elementsToAdd[i]); //Clean node from Knockout bindings
ko.applyBindings(bindingContext, elementsToAdd[i]);
}
}
};
ko.applyBindings(viewModel);
viewModel.dados(myPage2(2));
function fAlter(nPage) {
viewModel.dados(myPage2(nPage));
}
</script>
</body>
</html>
答案 9 :(得分:-1)
jQuery解决方案:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns ="http://www.w3.org 1999 xhtml" xml :lang="en">
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
function check(link) {
$(link).replaceWith($(link).text());
}
</script>
<style>
a:link{
color:#1DAAA1;
}
a:visited{
color:green;
}
a:hover{
background: #ff0000;
color: #FFF;
}
</style>
</head>
<body>
<table width="500" align="center" border="5px solid">
<tr align="center" >
<td><a href="http://www.google.com" target="_blank" onclick="return check(this);"> Google </a></td>
<td><a href="http://www.yahoo.com" target="_blank" onclick="return check(this);"> Yahoo </a></td>
<td><a href="http://www.bing.com" target="_blank" onclick="return check(this);"> Bing </a></td>
<td><a href="http://en.wikipedia.org" target="_blank" onclick="return check(this);"> Wikipedia </a></td>
</tr>
</table>
</body>
</html>