JQ 순환 쓰기
2430 단어 필기
Title
function setStyle() {
let input = $("input[type='checkbox']:checked")
// console.log($("input[type='checkbox']:checked").val())
// for(let i=0;i<input.length;i++){}
input.each(function (i,item) {
// if(i==1){
// return false
// }
// jq each return false
console.log(i)//
console.log(item) //
$(this)// jq each jq $(this)
console.log($(this).val())
$(item) // input jq
})
/*$.each()*/
/* $.each(input,function (i,item) {
console.log(i)//
console.log(item)//
console.log($(this).val())
console.log($(item).val())
})*/
// var a = [1,2,3]
// var input1 = document.getElementsByTagName("input")
// a.forEach(function (item,i) {
// // forEach
// console.log(item)//
// console.log(i)//
// })
/*input1.forEach(function (item,i) { // forEach function
console.log(item)
console.log(i)
})*/
var enemyArr = [1,2,3,34]
var bullteArr = [2323,323,43,34]
/* for(let i){
for(let j){
enemyArr[i]
bulletArr[j]
}
}*/
/* enemyArr.forEach(function (enemyItem) {
bulletArr.forEach(function (bullteItem) {
})
})*/
// ======================== ============
// input.css({
// width:"20px",
// height:"20px"
// })
// input jq class size
console.log(input.attr("class"))
input.attr("class","size")
input.attr({
class:"size",
dataType:"nihao"
})
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
static 간단한 설명static 방법은 일반적으로 정적 방법이라고 부른다. 정적 방법은 어떠한 대상에 의존하지 않고 접근할 수 있기 때문에 정적 방법에 있어this는 없다. 왜냐하면 그 어떠한 대상에도 의존하지 않기 때문이다. 대상이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.