Created
April 19, 2016 19:11
-
-
Save zy108830/412735b78245aaa6f1019f710fb9aee4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//点击下拉加载 | |
var aaa=5; | |
var bbb=false; | |
//思考为什么必须要有一个event参数; | |
$('#loading').click(function(event,aaa,bbb){ | |
//思考为什么aaa和bbb都为undefined | |
console.log(event,aaa,bbb); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment