js中的html循环数组是怎么用的呢?

js中的html循环数组是怎么用的呢?,第1张

function Read(){

    var items=document.getElementByTagId("p")//获取标签为p的元素数组

    for(var i=0i<items.lengthi++){    //循环

        alert(items[i])                //items[i]是当前元素

    }

}

int[] arr1 = new int[] { 1, 2, 3 }

int[] arr2 = new int[] { 4, 5, 6 }

int i = 0

for(i=0i<arr1.Lengthi++)

{

Response.Write(arr1[i])

Response.Write(arr2[i])

}

你定义是js方法

为啥用jquery each循环呢

你直接用for循环就是了 循环依据是arr的下标

然后吧值拼接一下用 以下都行

$("#thecity").text()

$("#thecity").html()

append(content | fn)

appendTo(content)

prepend(content | fn)

prependTo(content)

外部插入

after(content | fn)

before(content | fn)

insertAfter(content)

insertBefore(content)

包裹

wrap(html)

wrap(elem)

wrap(fn)

unwrap()

wrapAll(html)

wrapAll(elem)

wrapInner(html)

wrapInner(elem)

wrapInner(fn)

替换

replaceWith(content)

replaceAll(selector)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7115383.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-01
下一篇 2023-04-01

发表评论

登录后才能评论

评论列表(0条)

保存