摘要: var vm = new Vue { el: "#my_id" , data: { name: "test" ,url: "" ,txt:"测试" } ,methods: { GetData: function(){ //获取数据 return this.txt; } } ,computed: { 阅读全文
posted @ 2021-06-30 20:00 夏目-D 阅读(29) 评论(0) 推荐(0)
摘要: 遍历: $.each(array, function (i, item) {//遍历json数组 for (var key in item) {//遍历键值 alert(item[key]); } }); 添加: var array=[]; var json={}; json["name"]="a" 阅读全文
posted @ 2021-06-30 17:45 夏目-D 阅读(110) 评论(0) 推荐(0)