vue中如何获取到input中的值
HTML:<input type="number" ref="abc">JS:var id=this.$refs.abc.value;或者使用v-modelHTML:<input :type="inputType2"v-model="password"class="PwdInput"...
·
HTML:
<input type="number" ref="abc">
JS:
var id=this.$refs.abc.value;
或者使用v-model
HTML:
<input :type="inputType2"
v-model="password"
class="PwdInput"
placeholder='请设置您的密码'>
JS:
var aaa=_this.password;//获取到值var _this=this;
更多推荐
已为社区贡献2条内容
所有评论(0)