iview+vue实现动态添加、删除输入框
程序员文章站
2022-06-20 10:56:31
...
iview+vue实现动态添加、删除输入框
<div>
<Row style="margin-top: 10px;" >
<Col span="4" style="text-align: right;margin-top: 15px;"><label >xxx:</label ></Col>
<Col span="17" style="margin-left: 10px;">
<div v-for="(texts,index) in textList">
<div style="align-items:center;display:flex;justify-content:flex-start;margin-top: 10px;">
<Input v-model="texts.name" style="margin-right:10px;" placeholder="10.10.10.1-10.10.10.254" ></Input>
<div>
<Button size="small" style="margin-left:5px;" :disabled="textList.length==1" @click="delText(index)" icon="ios-arrow-up" shape="circle"></Button>
</div>
</div>
</div>
</Col>
<Col span="2" style="margin-top: 14px;">
<Button size="small" style="margin-left:5px;" icon="ios-arrow-down" @click="addText()" shape="circle"></Button>
</Col>
</Row>
</div>
export default {
components: {
},
data() {
return {
textList: [{name: "10.10.10.1-10.10.10.254"}],
texts: ''
}
},
methods: {
addText(){
let length = this.textList.length;
let cope = {
'name': ''
}
this.textList.push(cope);
console.log(this.textList)
},
delText(index){
this.textList.splice(index, 1);
}
}
}
推荐阅读
-
使用jQuery实现动态添加小广告
-
vue动态渲染svg、添加点击事件的实现
-
JavaScript实现添加、查找、删除元素
-
利用js实现前台动态添加文本框,后台获取文本框内容(示例代码)_javascript技巧
-
javascript对talbe进行动态添加、删除、验证实现代码_javascript技巧
-
Android实现EditText中添加和删除bitmap的方法
-
Android viewpager中动态添加view并实现伪无限循环的方法
-
C# 添加、修改以及删除Excel迷你图表的实现方法
-
Android中RecyclerView实现Item添加和删除的代码示例
-
C# 添加、修改以及删除Excel迷你图表的实现方法