머지 충돌 커밋

This commit is contained in:
chicpro
2013-03-08 12:02:35 +09:00
2 changed files with 15 additions and 8 deletions

2
.gitignore vendored
View File

@ -2,4 +2,4 @@ data
config.php
test*
sirgle
caption_sr_test.php
sr_*

View File

@ -1,15 +1,22 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<style>
html {margin:0;padding:0;font-size:300%;font-family:"gulim"}
#x1 {width:100px;padding:1%;background:#ddd}
</style>
<meta charset="utf-8">
<title>AJAX 동적 컨텐츠 테스트</title>
<script src="js/jquery-1.8.3.min.js"></script>
</head>
<body>
<div id="x1">깊은 옹달샘 누가 와서 먹나요</div>
<a href="">클릭</a>
<div></div>
<script>
$(function(){
$('a').click(function(){
$('div').text('클릭되었습니다.');
});
});
</script>
</body>
</html>