반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- pycharm
- classification
- 자료구조
- CES 2O21 참여
- postorder
- html
- vscode
- web
- web 개발
- web 용어
- KNeighborsClassifier
- 데이터전문기관
- tensorflow
- 재귀함수
- 결합전문기관
- C언어
- Keras
- mglearn
- 대이터
- paragraph
- 머신러닝
- broscoding
- java역사
- bccard
- discrete_scatter
- CES 2O21 참가
- web 사진
- 웹 용어
- inorder
- cudnn
Archives
- Today
- Total
bro's coding
jQuery.Class이용 event처리 본문
반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Insert title here</title>
<script type="text/javascript">
$(document).ready(function() {
$(".ct").click(function() {
return confirm($(this).text() + "이동하시겠습니까?");
});
})
</script>
</head>
<body>
<a href="http://daum.net" class="ct">다음넷으로</a>
<br>
<a href="http://naver.com">네이버으로</a>
<br>
<a href="http://google.com" class="ct">google로</a>
<br>
</body>
</html>
반응형
Comments