AI智能
改变未来

超级好用的JQuery(极速总结,最常用的知识点集合)


一、常用方法

$(\"#box\").addClass()//加类名.removeClass().toggleClass()//切换类.html().css().text().each((index,item)=>{})//循环.attr()//加属性.prop()//与attr一样,当为true或者false这个时候只能用prop.removeAttr(属性名)//移除属性

二、事件绑定以及解绑

绑定,有2种

$(\"#box\").mouserover(function)$(\"#box\").on({\"click\" : function})

三、JQuery中的Ajax

$ajax({type: \"GET\"url : \"\"data:{}success:function(result){}})//或者$get(\"url\",data,function(result){})
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 超级好用的JQuery(极速总结,最常用的知识点集合)