type为什么是click
<h2>on绑定多事件</h2>
<h4>测试一</h4>
<div class="left">
点击触发:on('click',fn)
<div id="test1"></div>
</div>
<script type="text/javascript">
//事件绑定一
$("#test1").on('click', function(e) {
$(this).text('触发事件:' + e.type)
console.log(e.type)
})
</script>