머지 충돌 커밋
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,4 +2,4 @@ data
|
|||||||
config.php
|
config.php
|
||||||
test*
|
test*
|
||||||
sirgle
|
sirgle
|
||||||
caption_sr_test.php
|
sr_*
|
||||||
|
|||||||
21
test.php
21
test.php
@ -1,15 +1,22 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="utf-8">
|
||||||
<style>
|
<title>AJAX 동적 컨텐츠 테스트</title>
|
||||||
html {margin:0;padding:0;font-size:300%;font-family:"gulim"}
|
<script src="js/jquery-1.8.3.min.js"></script>
|
||||||
#x1 {width:100px;padding:1%;background:#ddd}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="x1">깊은 산 속 옹달샘 누가 와서 먹나요</div>
|
<a href="">클릭</a>
|
||||||
|
<div></div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(function(){
|
||||||
|
$('a').click(function(){
|
||||||
|
$('div').text('클릭되었습니다.');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user