您好,登录后才能下订单哦!
本篇文章为大家展示了使用vue怎么监听input标签的value值,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
由于项目需要做实时搜查询数据,所以需要监听input标签的value,这里使用的前端框架vue
<input id="materialSearch" type="text" @keyup.enter="search" @input="search($event)"/>
这里的重点是:@input="search($event)",表示当文本框有内容输入时,则调用search方法
/*模糊搜索*/ search: function (event) { //方法一:直接通过event.data可以获得文本内容 if(event.data!=null){ this.materialName = event.data; } //方法二:获取DOM对象取value值 this.materialName = event.currentTarget.value; //方法三:通过js获取 this.materialName = document.getElementById("materialSearch").value; }
拓展知识:Vue 监听多个input框是否都存在值的方法
如下所示:
<div class="inner clear"> <input type="text" placeholder="第一个输入框" v-model="input1"> </div> <div class="inner clear"> <input type="text" placeholder="第二个输入框" v-model="input2"> </div> <div class="inner clear"> <input type="text" placeholder="第三个输入框" v-model="input3"> </div>
script部分:
export default { data:function(){ return { input1:'', input2:'', input3:'', ifExist:'', } }, }
在页面中插入一个隐藏域:
<div >{{ exitsVal }}</div>
利用Vue的computed属性
computed:{ exitsVal:function(){ this.ifExist=Number(Boolean(this.userName))+Number(Boolean(this.mailCode))+Number(Boolean(this.mailAd)); } },
用watch监听data中 ifExist的值
watch:{ ifExist(newVal,oldVal){ if(Number(newVal) === 3){ 三个input框内都有值时需要做的操作 }else{ 至少一个没有值 } } }
Vue是一套用于构建用户界面的渐进式JavaScript框架,Vue与其它大型框架的区别是,使用Vue可以自底向上逐层应用,其核心库只关注视图层,方便与第三方库和项目整合,且使用Vue可以采用单文件组件和Vue生态系统支持的库开发复杂的单页应用。
上述内容就是使用vue怎么监听input标签的value值,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。