為什么測試三種,把顯示x位置的函數(shù)不管提前還是放后,都只顯示1111
? ?<script type="text/javascript">
? ? //不同函數(shù)傳遞數(shù)據(jù),為什么。把顯示x位置的函數(shù)不管提前還是放后,都只顯示1111
? ? ?$(".aaron3").mousemove(function(e) {
? ? ? ? $(this).find('p:last').html('數(shù) ?據(jù):' + e.pageX)
? ? })?
? ??
? ? ?function data(e) {
? ? ? ? $(this).find('p:last').html('數(shù)據(jù):' + e.data)
? ? }
? ? function a() {
? ? ? ? $(".right").mousemove(1111, data)
? ? }
? ? a(); ?
? ? ? ? </script>
2017-07-18
但event.target不會變化,它永遠是直接接受事件的目標DOM元素;
2017-04-24
<div id="test">點擊觸發(fā)<div>
$("#test").mousemove(11111,function(e) {
? ?//this指向 div元素
? ?//e.data ?=> 11111 傳遞數(shù)據(jù)
});