jQuery
jQuery In Action chapter 1-3
우혁이 아빠
2009. 12. 19. 08:49
<!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>나를 따라와!</title>
<script type="text/javascript" src="../js/jquery-1.2.1.js"></script>
<script type="text/javascript">
$(function () {
$("<p>안녕!</p>").insertAfter("#followMe");
});
</script>
</head>
<body>
<p id="followMe">나를 따라와!</p>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>나를 따라와!</title>
<script type="text/javascript" src="../js/jquery-1.2.1.js"></script>
<script type="text/javascript">
$(function () {
$("<p>안녕!</p>").insertAfter("#followMe");
});
</script>
</head>
<body>
<p id="followMe">나를 따라와!</p>
</body>
</html>