我想问一下HTML标记
<a href="www.mysite.com" onClick="javascript.function();">Item</a>
如何使用href和onClick使其成为标签?(最好先运行onClick,然后再运行href)
我想问一下HTML标记
<a href="www.mysite.com" onClick="javascript.function();">Item</a>
如何使用href和onClick使其成为标签?(最好先运行onClick,然后再运行href)
Answers:
您已经有了所需的内容,但语法进行了少量更改:
<a href="www.mysite.com" onclick="return theFunction();">Item</a>
<script type="text/javascript">
function theFunction () {
// return true or false, depending on whether you want to allow the `href` property to follow through or not
}
</script>
<a>
标签onclick
和href
属性的默认行为是执行onclick
,然后按照进行href
操作,直到onclick
不返回false
,即取消事件(或未阻止事件)
href="#"
实际URL 之前,它对我不起作用。
使用jQuery。您需要捕获click
事件,然后转到网站。
$("#myHref").on('click', function() {
alert("inside onclick");
window.location = "http://www.google.com";
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#" id="myHref">Click me</a>
href
属性。
要实现此目的,请使用以下html:
<a href="www.mysite.com" onclick="make(event)">Item</a>
<script>
function make(e) {
// ... your function code
// e.preventDefault(); // use this to NOT go to href site
}
</script>
这是工作示例。
<a href="http://example.com" >Item</a>
在Chrome中,我看到一些消息,允许页面运行此链接(在chrome网址栏的末尾提醒)。在控制台Safari中我看到warrning:[锁定]页面fiddle.jshell.net/_display不允许从显示不安全内容example.com -所以也许这是一些安全问题(仅适用于小提琴?)
无需jQuery。
本示例使用纯浏览器javascript。默认情况下,似乎单击处理程序将在导航之前进行评估,因此您可以取消导航并根据需要进行操作。
<a id="myButton" href="http://google.com">Click me!</a>
<script>
window.addEventListener("load", () => {
document.querySelector("#myButton").addEventListener("click", e => {
alert("Clicked!");
// Can also cancel the event and manually navigate
// e.preventDefault();
// window.location = e.target.href;
});
});
</script>
用于ng-click
代替onclick
。它是如此简单:
<a href="www.mysite.com" ng-click="return theFunction();">Item</a>
<script type="text/javascript">
function theFunction () {
// return true or false, depending on whether you want to allow
// the`href` property to follow through or not
}
</script>