HTML tag lt;agt; want to add both href and onclick working(HTML 标签 lt;agt;想要同时添加 href 和 onclick 工作)
问题描述
我想问一下HTML标签
I'd like to ask about HTML tag
<a href="www.mysite.com" onClick="javascript.function();">Item</a>
如何使这个 a 标签与 href 和 onClick 一起使用?(最好先运行 onClick 再运行 href)
How to make this a tag working with href and onClick? (prefer onClick running first then href)
推荐答案
你已经有了你需要的东西,只需要稍微改变一下语法:
You already have what you need, with a minor syntax change:
<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,然后只要 onclick 不返回 false 就按照 href,取消事件(或事件未被阻止)
The default behavior of the <a> tag's onclick and href properties is to execute the onclick, then follow the href as long as the onclick doesn't return false, canceling the event (or the event hasn't been prevented)
这篇关于HTML 标签 <a>想要同时添加 href 和 onclick 工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:HTML 标签 <a>想要同时添加 href 和 oncl
基础教程推荐
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
