자바스크립트 기본 튜토리얼 ...LOGIN

자바스크립트 기본 튜토리얼 컨텐츠 선택 이벤트

onselect 콘텐츠 선택 이벤트

다음 예를 들어보겠습니다.

텍스트 상자에 콘텐츠가 있습니다. 텍스트 상자의 콘텐츠를 선택하면 이벤트가 발생합니다.

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>内容选中事件</title>
</head>
<body>
	<input type="text" onselect="onf()" value="php 中文网中文网中文网">
	<script type="text/javascript">
			function onf(){
				alert('您已触发选中内容事件');
			}
	</script>
</body>
</html>

참고: 일반적으로 이 이벤트는 커서 수집이나 종료, 클릭 이벤트 등과 같은 일부 마우스 이벤트에 더 많이 사용됩니다.

다음 섹션
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>内容选中事件</title> </head> <body> <input type="text" onselect="onf()" value="php 中文网中文网中文网"> <script type="text/javascript"> function onf(){ alert('您已触发选中内容事件'); } </script> </body> </html>
코스웨어