jquery一些常见用法笔记
js中的 $
是在使用jQuery的函数。$
是jquery的用法。
jquery循环
var arr = [ "one", "two", "three", "four"];
$.each(arr, function(){
alert(this);
});
循环参考:https://blog.csdn.net/hani_wen/article/details/81878112
jquery循环遍历 推荐
$.each(bookslist数组(列表),function(i,n){
console.log(i);//索引
console.log(n);//遍历出来的元素
var num = i+1;
jquery创建元素
创建元素参考 https://blog.csdn.net/m0_45142186/article/details/126380680?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2aggregatepagefirst_rank_ecpm_v1~rank_v31_ecpm-2-126380680-null-null.pc_agg_new_rank&utm_term=jquery%E5%BE%AA%E7%8E%AF%E5%88%9B%E5%BB%BA%E6%A0%87%E7%AD%BE&spm=1000.2123.3001.4430
html获取js中的值 这个是通用
1、在html中添加标签
2、在js代码中往id的标签塞值就可以了:$("#id").text("asdf");
html获取javascript变量值的方法有哪些
参考https://www.php.cn/div-tutorial-465412.html
jquery常见判断
判断参考https://blog.csdn.net/ful1021/article/details/42003101
jquery选择器 某元素有多个复合class怎么选择
属性选择 $(“[class='good list card']“);此处 顺序必须一致才行
juqery请求回来后添加到html页面
注意选择的元素以及是使用after append before还是什么的。
juqery的$(this).attr("id")
获取值
方法好像要function goDel(e)还是function goDel(obj),忘了。到时看看。