js 与jquery 同时绑定一个ID onclink事件

夙愿已清 提交于 2020-02-29 22:20:17

事例代码:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>   
<head>
<title>shortLink</title>
</head>
<script  src="http://localhost:8090/short_link/js/jquery/jquery-1.8.3.min.js"></script>//引入jquery框架
<script type="text/javascript">

$(document).ready(function(){
 $("#test").click(function(){
  alert("你好");
 });
 $("#test").click(function(){
      alert("你好2");
     });
});
function dd(){
    alert("dd!");
}
function dd(){
    alert("dd2");
}
function aa(){
    alert("aa!");
}
</script>
<body>
  <h1>哈哈</h1>
  <input id="test" type="button" value="确定" onclick="dd();aa();"/>
</body>
</html>

相应结果:

dd2    aa!  你好 你好2

总结:

从结果中看出;

1)js 多个同名响应事件,仅会执行最后一个

2)onclink绑定多个事件,会以从左到右顺序执行

3)jquery 绑定事件多次,多次都会执行,且会在JS事件之后执行







易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!