jQuery Event Menthods

2017-03-11
阅读 2 分钟
1.3k
Here are some common DOM events 1 Mouser Events click dbclick mouseenter mouseleave 2 Keyborars Events keypress keydown keyup 3 Form Events submit change focus blus 4 Docment/Wiindow Events laod resize scroll unload click()the function is executed when the user clicks on the html element.eg: {代...

jq 中常见的选择器

2017-03-11
阅读 2 分钟
1.4k
1 基本选择器id选择器 #id $("#test")class 选择器 .class $(".test")元素选择器 element $(p) $(img)通配符选择器 $("*") 匹配所有元素