더보기 버튼을 만들었는데 작동이 안되네요... 좀 봐주세요
본문
더보기 버튼만들어서 할려고하는데
more1이 나와있고
more이라는 버튼을 누르면 class="more"이 메모장이 뜨게하고 싶은데
이게 잘못된건가요?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$(".couponWrap").load(".more");
});
});
</script>
<style>
.more1
{display:block;
width:100%;
height: 0px;
font-size: 12px;
text-align: center;
/*border: 1px solid #ccc;*/
/* border-top:0; */
box-sizing: border-box;
padding: 14px 0;
background-color: white;
}
</style>
<div class="couponWrap">
<div class="more1" style="font-weight: 400;font-size:12px; white-space: pre-line;"><?php if($list[$i]['wr_13']){ echo $list[$i]['wr_13']; echo ""; }?> <!-- 메모장 --></div>
<div class="more" style="font-size:12px; white-space: pre-line;"><?php if($list[$i]['wr_12']){ echo $list[$i]['wr_12']; echo "";}?> <!-- 메모장 --></div>
</div>
<div class="more2"><button>More</button></div>
답변을 작성하시기 전에 로그인 해주세요.