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)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)