日期:2014-05-16 浏览次数:20378 次
<a id="a" href="http://www.baidu.com">baidu</a>
<br />
<button id="button">click</button>
<script type="text/javascript">
document.getElementById("a").onclick = function() {
alert("触发A标签click事件");
};
document.getElementById("button").onclick = function() {
document.getElementById("a").onclick();
};
</script>
$.("a").each(function(){
$(this).on("click",function(){
alert(123);
});
});
$(document).ready(function(){
$("a").click(){
alert(this.id);
}
}