input[type="button"], input[type="submit"], input[type="reset"] {
-webkit-appearance: none;
}
textarea { -webkit-appearance: none;}
给绑定click事件的元素加上样式:cursor: pointer;
然后用on来绑定事件,jquery1.7后推荐用on来动态绑定事件,因为比live更高效
$(function(){$(document).on('click','.list li',function(){alert('你点我了'); }); })
网友评论