例会メモ(4)js
883 ワード
1.クラスと配列
7.コールバック関数:
{}
[]
2.jquery元素の取得: (class)
$(".intro")
id :
$("#intro")
:
$("p")
3.クリックイベント:$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
4.一般的な方法hide()
show()
fadeIn()
fadeOut()
val()
5.ajax方法:$.ajax({
/** :ajax type url */
type: "get",// (post get)
url:"/url",
data:
{
username"getName",
password: infoIdTemp
},
success:function(){
}
error:funcction(){
}
});
6.npm実装およびアンインストールモジュールhttps://blog.csdn.net/L1558198727/article/details/79312694 7.コールバック関数:
, 。
eg:callback.js