博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js抓取list中item的html,html - i want add item in list (vue.js) - Stack Overflow
阅读量:5109 次
发布时间:2019-06-13

本文共 751 字,大约阅读时间需要 2 分钟。

I want to make a program that adds and deletes items using the input tag. I wrote a program as I know, but the addition works fine, but when I delete it, an error appears. And when I check the checkbox, I want to put the text that turns red, but I tried several things and it failed. I would appreciate it if you let me know.

Document

div.active { color: red;}

Todo List

ADD


{

{ item.name }}

DELETE

new Vue({

el : '#app',

data : {

name : '',

val : [],

list : [

{ id: 1, name: 'Buy a car'},

{ id: 2, name: 'Do a homework'},

],

},

methods: {

doAdd: function() {

var max = this.list.reduce(function(a, b) {

return a > b.id ? a : b.id

}, 0)

this.list.push({

id: max + 1,

name: this.name

})

},

doRemove: function(index) {

this.list.splice(index, 1)

},

}

})

转载地址:http://eejdv.baihongyu.com/

你可能感兴趣的文章
设计模式之装饰者模式
查看>>
一道不知道哪里来的容斥题
查看>>
Blender Python UV 学习
查看>>
window添加右键菜单
查看>>
入手腾龙SP AF90mm MACRO
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>
[转]JavaScript快速检测浏览器对CSS3特性的支持
查看>>
Master选举原理
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
小别离
查看>>
微信小程序-发起 HTTPS 请求
查看>>
WPF动画设置1(转)
查看>>
基于node/mongo的App Docker化测试环境搭建
查看>>
秒杀9种排序算法(JavaScript版)
查看>>