ref

sting01·2023년 2월 18일
0

svelte

목록 보기
9/18
<script>
	let textareaRef;

	const click = () => {
		textareaRef.focus();
		textareaRef.click();
	};

	const handle = () => {
		console.log('hand');
	};
</script>

<style>
</style>

<button on:click="{click}">click</button>

<textarea
	name=""
	id=""
	cols="30"
	rows="10"
	bind:this="{textareaRef}"
	on:click="{handle}"></textarea>

bind:this 사용

0개의 댓글