jQuery--- 이벤트 예제 사용
5776 단어 jQuery
이벤트 설정
설명은 다음과 같습니다.
jQueryオブジェクト.イベント名(function) {
イベントが起きたときの処理
});
예를 들어 "#btn의 요소를 클릭하면 console.log('clicked')"처리를 실행하는 경우↓
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
</head>
<body>
<button id="btn">ボタン</button>
<script type="text/javascript">
$(function(){
$('#btn').click(function() {
console.log('clicked');
});
});
</script>
</html>
↓ 물론 클릭을 제외하고mouseover와mouseout 등 자바스크립트에서 사용할 수 있는 이벤트는 누구나 사용할 수 있다.
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
</head>
<body>
<button id="btn">ボタン</button>
<script type="text/javascript">
$(function(){
$('#btn').mouseover(function() {
console.log('mouseover');
});
$('#btn').mouseout(function() {
console.log('mouseout');
});
});
</script>
</html>
Reference
이 문제에 관하여(jQuery--- 이벤트 예제 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tsukishimaao/items/819cda201a462d0b5d7e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)