Vue 2.0 감청 텍스트 상자 내용 변화 및 ref 사용 설명 기반

다음 과 같다.

<!DOCTYPE html>
<html lang="en">
 
	<head>
		<meta charset="UTF-8">
		<title>Title</title>
		<link rel="stylesheet" href="css/bootstrap.css" rel="external nofollow" >
		<script src="js/jquery-3.2.1.min.js"></script>
		<script src="js/bootstrap.js"></script>
		<script src="js/vue.js"></script>
	</head>
 
	<body>
		<div id="example">
			<input type="text" v-model="items.type" ref="type" />
			<div class="show">      :{{items.type}}</div>
		</div>
		<script>
			var example1 = new Vue({
				el: '#example',
				data: {
					items: {
						type: '    :'
					}
				},
				watch: {
					items: {
						handler: function() {
							alert(this.$refs.type.value);
						},
						deep: true
					}
				}
			})
		</script>
	</body>
 
</html>

ref 설명

<div class="touchscroll">

//

</div>
이 div 의 값 을 가 져 오 려 면 scrollTop 의 값 을 가 져 와 야 합 니 다.일반적인 방법 은 document.query Selector("touch Scroll")로 이 dom 노드 를 가 져 온 다음 scrollTop 의 값 을 가 져 와 야 합 니 다.
하지만 ref 로 연결 하면 dom 노드 를 가 져 올 필요 가 없습니다.위의 div 에 div 를 연결 한 다음$refs 에서 호출 하면 됩 니 다.
그래서 위 에 다음 과 같이 쓸 수 있다.

<div class="touchscroll" ref='div'>

//

</div>
그리고 자바 script 에서 이렇게 호출 합 니 다:

this.$refs.div.scrollTop.
이렇게 하면 dom 노드 를 얻 는 소 모 를 줄 일 수 있 습 니 다!
Vue 2.0 감청 텍스트 상자 의 내용 변화 와 ref 의 사용 설명 을 바탕 으로 하 는 이 소 개 는 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 사랑 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기