|
|
|
@ -123,7 +123,7 @@
|
|
|
|
|
<#if model['lm_vote_list']?has_content>
|
|
|
|
|
<#list model['lm_vote_list'] as item>
|
|
|
|
|
<div class="vote_box">
|
|
|
|
|
<input class="vote_input" name="vote_content" placeholder="투표 내용을 입력하세요." value="${item['v_content']!}" >
|
|
|
|
|
<input class="vote_input" maxlength="18" name="vote_content" placeholder="투표 내용을 입력하세요." value="${item['v_content']!}" >
|
|
|
|
|
<span> </span><a onclick="fncRemove(this);"><img src="${URL_ROOT}/m/img/close_ico.png" style="height: 20px; width: 20px;"></a>
|
|
|
|
|
</div>
|
|
|
|
|
</#list>
|
|
|
|
@ -346,7 +346,7 @@
|
|
|
|
|
$('.vote_add').on('click', function () {
|
|
|
|
|
$(".vote_list").append(
|
|
|
|
|
"<div class='vote_box'>" +
|
|
|
|
|
"<input class='vote_input' name='vote_content' placeholder='투표 내용을 입력하세요.'>" +
|
|
|
|
|
"<input class='vote_input' maxlength='18' name='vote_content' placeholder='투표 내용을 입력하세요.'>" +
|
|
|
|
|
"<span> </span><a onclick=\"fncRemove(this);\"><img src=\"${URL_ROOT}/m/img/close_ico.png\" style=\"height: 20px; width: 20px;\"></a>" +
|
|
|
|
|
"</div>"
|
|
|
|
|
);
|
|
|
|
|