cool jQuery tips

魏鸿
2023-12-01

$().slideToggle("slow/fast") //move the object

$().animate({,}) //cool animation tool function

$().stop()

$().hide(100,callback)  //attribute to start after hide finish

$().slideUp().slideDown()  //connect various function to one object

text(),html(),val(),attr("href")  //attribute of object

$().find()  //find children... ...

$("div p").first()  //find first p in div

$().load()  //load outer file

$.get(url,callback)  //url:address  callback :(data status)

$.post(url,data,callback)  //data:send to server  callback:same as get

$.noConflict()  //jQuery to substitute $

转载于:https://www.cnblogs.com/xiaoshan-coding/p/4596469.html

 类似资料:

相关阅读

相关文章

相关问答