vue 감청 input 태그 의 value 값 방법
<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 style="display:none" >{{ 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 감청 input 태그 의 value 값 방법 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.