vue.js取得某個dom元素值的方法:1、在【vue.js1.0】版本可以透過【v-el】來取得dom元素;2、在【Vue.js2.0 】版本使用ref屬性來標識一個元素。
本教學操作環境:windows10系統、vue2.5.2,本文適用於所有品牌的電腦。
【相關文章推薦:vue.js】
#vue.js取得某個dom元素值的方法:
1、vue.js1.0版本
可以透過:v-el 來取得dom元素
例如:
html程式碼:
<input type="text" name="xxx" id="xxx" v-el:sxx /> <button @click="ok()">确定</button>
js程式碼:
var vm = new Vue({ el: '#app', methods: { ok() { var xx = this.$els.sxx.value; console.log(xx); } } });
結果:
2、Vue.js2.0版本
#### #####Vue.js 2.0使用了ref 取代掉了v-el和v-ref,使用ref 屬性來識別一個元素。 .######我們寫的時候就變成了###
<input type="text" name="xxx" id="xxx" ref='sxx' /> <button @click="ok()">确定</button>
var vm = new Vue({ el: '#app', methods: { ok() { var xx = this.$refs.sxx.value; console.log(xx); } } });
以上是vue.js怎麼取得某個dom元素的值的詳細內容。更多資訊請關注PHP中文網其他相關文章!