반응형
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 |
Tags
- inorder
- postorder
- web
- broscoding
- paragraph
- 대이터
- 머신러닝
- 자료구조
- 재귀함수
- cudnn
- bccard
- mglearn
- vscode
- web 사진
- tensorflow
- 결합전문기관
- discrete_scatter
- html
- 웹 용어
- CES 2O21 참가
- C언어
- pycharm
- classification
- java역사
- 데이터전문기관
- web 개발
- CES 2O21 참여
- web 용어
- Keras
- KNeighborsClassifier
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