在实际开发中,我们经常需要获取表单中输入的内容,比如注册,登录等等vue 中可以使用$refs获取表单内容,也可以使用v-model双向绑定数据来获取一、使用$refs获取表单内容templatedivinput type=text ref...
在实际开发中,我们经常需要获取表单中输入的内容,比如注册,登录等等
vue 中可以使用$refs获取表单内容,也可以使用v-model双向绑定数据来获取
一、使用$refs获取表单内容
<template>
<div>
<input type="text" ref="name">
<button @click="getInputValue">获取表单内容</button>
</div>
</template>
<script>
export default {
data(){
return{
}
},
methods:{
getInputValue(){
var n=this.$refs.name.value;
console.log(n)
}
}
}
</script>
代码解读:
我们在需要取值的标签中定义一个参数名称赋值给ref ref="name"
,然后在调用方法的时候可以使用this.$refs.name.value
来获取值
代码运行效果如下:当表单中输入 张晓菲,点击按钮,获取到值,输出在控制台
二、使用v-model双向绑定
代码如下:
<template>
<div>
<input type="text" v-model="name">
<button @click="getInputValue">获取表单内容</button>
</div>
</template>
<script>
export default {
data(){
return{
name:""
}
},
methods:{
getInputValue(){
console.log(this.name)
}
}
}
</script>
解读:
1、在data中定义一个参数 name
2、使用v-model 绑定 name
3、点击按钮执行 getInput 方法,使用 this.name 获取定义的name
沃梦达教程
本文标题为:vue 使用$refs获取表单内容及v-model双向数据绑定
基础教程推荐
猜你喜欢
- Javascript Bootstrap的网格系统,导航栏和轮播详解 2023-08-11
- HTML clearfix清除浮动讲解 2022-11-20
- JS滚动到顶部踩坑解决记录 2023-07-10
- 使用ajax跨域调用springboot框架的api传输文件 2023-02-23
- 在实战中可能碰到的几种ajax请求方法详解 2023-02-01
- cocos creator游戏实现loading加载页面,游戏启动加载动画 2022-10-29
- uniapp开发微信小程序自定义顶部导航栏功能实例 2022-10-21
- Ajax+smarty技术实现无刷新分页 2022-12-15
- Ajax发送和接收请求 2022-12-15
- 关于Ajax跨域问题及解决方案详析 2023-02-23