//把这段代码删了测试三依然可以执行
function data(e) {
alert(e.data) //1111
}
function data(e) {
alert(e.data) //1111
}
2016-10-22
bottonName = bottonName||'first'; 这句话是表示如果bottomName为空,则赋值为‘frist’,如果不为空则是bottomName...
2016-10-21
W3C中就总结了两句话:
不论鼠标指针穿过被选元素或其子元素,都会触发mouseover事件
只有鼠标指针穿过被选元素时,才能触发mouseenter事件
不论鼠标指针穿过被选元素或其子元素,都会触发mouseover事件
只有鼠标指针穿过被选元素时,才能触发mouseenter事件
2016-10-21
<div id='bg' style='height:200px;width:300px;background:gray;'></div>
<div id='cube' style='height:20px;width:20px;position:absolute;background:blue;'></div>
<script >
$('#bg').mousemove(function(e){
$('#cube').css('left',e.pageX);
$('#cube').css('top',e.pageY);
})
</script>
<div id='cube' style='height:20px;width:20px;position:absolute;background:blue;'></div>
<script >
$('#bg').mousemove(function(e){
$('#cube').css('left',e.pageX);
$('#cube').css('top',e.pageY);
})
</script>
2016-10-18
$('#msg').html($('#msg').html()+ "<p>内层span元素被单击</p>"); //在msg原有内容上追加
$('#msg').html("<p>内层span元素被单击</p>"); //替换原来的内容
$('#msg').html("<p>内层span元素被单击</p>"); //替换原来的内容
2016-10-18
$("input:last").focusin('慕课网', function(e) {
$(this).val(e.data);
})
感觉更符合习惯
$(this).val(e.data);
})
感觉更符合习惯
2016-10-18