欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

点击按钮获取input里面的值

程序员文章站 2022-05-14 22:56:42
...

可以用双向绑定的方法

html代码

<view class="wenComment_raise">
	<input type="text"  
		   v-model="raise" 
		   :value="raise" 
		   @input="raiseContent">
	<button type="primary" @click="raiseBtn">提问</button>
</view>

js代码

data() {
	return {
		raise:"" //定义v-model的值
	}
},
methods: {
	raiseContent:function(event){
		var raise = event.target.value;
		this.raise = raise;
	},
	raiseBtn:function(){
		console.log(this.raise);
	},
}
相关标签: vue uni-app