JS里对象的值如何加属性呢?

JS里对象的值如何加属性呢?,第1张

var object1={"1": "张三","2": "李四"}

var arr=Object.keys(object1).map(function(k){

   return {id:k,name:object1[k]}

})

console.log(arr)

$(".selector").find("li").addClass("home")

推荐自学网址http://www.runoob.com/jquery/jquery-traversing-descendants.html

需要准备的材料分别有:电脑、html编辑器浏览器

1、首先,打开html编辑器,新建html文件,例如:index.html,编写问题基础代码。

2、在index.html中的<script>标签,输入js代码:$('li a').each(function (i, e) {$(this).attr('id', 'id1_' + i)})。

3、浏览器运行index.html页面,此时发现元素被js按照需求新增了id属性


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

原文地址: http://outofmemory.cn/bake/11760568.html

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

发表评论

登录后才能评论

评论列表(0条)

保存