html:
<form action='2.html'>
<div style="width:200px;height:200px;background:green;">
<input type="submit" value="提交">
<a href="http://www.baidu.com">http://www.baidu.com</a>
</form>
jquery:
$('a').click(function(e){
e.preventDefault();
alert('http://www.baidu.com');
})
或者
$('a').click(function(e){
alert('http://www.baidu.com');
return false;//等于e.preventDefault()+e.stopPropagation();
})
$('input').click(function(e){
e.preventDefault();//禁止表单提交
alert('表单提交!');
})
$('form').submit(function(e){
e.preventDefault();//禁止表单提交
})
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】博客园携手 AI 驱动开发工具商 Chat2DB 推出联合终身会员
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步