IT/jQuery

jQuery document ready

노마드오브 2018. 10. 10. 23:52

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

<script src="../scripts/jquery-3.3.1.min.js"></script>

<script>

// jQuery.com


// window.load(function () {

// alert('문서를 다 읽은 후에 경고창 띄움');

// });


jQuery(document).ready(function () {

alert('jQuery 준비');

});


$(document).ready(function () {

alert('jQuery 준비2')

});


$(function () {

alert('jQuery 준비3')

});



</script>

</head>

<body>

<h2>안녕하세요</h2>

</body>

</html>


'IT > jQuery' 카테고리의 다른 글

jQuery - html(), text()  (0) 2018.10.13
jQuery - jQuery를 사용하여 css 적용하는 방법  (0) 2018.10.12
jQuery $('img').attr('src')  (0) 2018.10.12
jQuery button click 이벤트시, each 사용법  (0) 2018.10.11
jQuery 선택자로 css 적용  (0) 2018.10.11