Vue2.x获取dom下子元素方法
Vue this.$refs获取DOM下子元素<template><div class="subject"><divv-html="insertedStr"@input="htmlHandler($event)"class="inputBox"ref="htmlInput"></div></div></template><
·
Vue this.$refs获取DOM下子元素
<template>
<div class="subject">
<div
v-html="insertedStr"
@input="htmlHandler($event)"
class="inputBox"
ref="htmlInput"
></div>
</div>
</template>
<script>
export default {
data() {
return {
insertedStr: "你就是超级塞牙人******啊啊啊啊啊",
};
},
created() {
this.editStr();
},
methods: {
editStr() {
this.insertedStr = this.insertedStr.replace(
"******",
"<input type='text' class='QQ' >"
// 不会作为 Vue 模板进行编译,无效方法
);
},
//获取DOM
htmlHandler(e) {
// 获取this.$ref下子元素方法
//1、 this.$refs.htmlInput.childNodes
//2、 e.target.getElementsByClassName("QQ")[0].value
//3、
console.log(this.$refs.htmlInput.firstElementChild);
},
},
};
</script>
<style lang="less" scoped>
.subject {
width: 100%;
height: 100%;
}
.inputBox {
height: 50px;
width: 600px;
}
.QQ {
border: none;
}
</style>
更多推荐
已为社区贡献12条内容
所有评论(0)