|
|
|
@ -177,7 +177,7 @@
|
|
|
|
|
<#if model['lm_vote_list']?has_content>
|
|
|
|
|
<#list model['lm_vote_list'] as item>
|
|
|
|
|
<div id="array_tag" class="control-label text-left" style="padding-left:260px;">
|
|
|
|
|
<input class="vote_input" name="vote_content" placeholder="투표 내용을 입력하세요.( 20글자 제한 )" value="${item['v_content']!}" style="border: 1px solid #ccd0d4;width:90%">
|
|
|
|
|
<input class="vote_input" name="vote_content" placeholder="투표 내용을 입력하세요.(최대 20자)" value="${item['v_content']!}" style="border: 1px solid #ccd0d4;width:90%">
|
|
|
|
|
<span> </span><a onclick="fncRemove(this);"><img src="${URL_ROOT}/m/img/close_ico.png" style="height: 20px; width: 20px;"></a>
|
|
|
|
|
</div>
|
|
|
|
|
</#list>
|
|
|
|
@ -424,7 +424,7 @@
|
|
|
|
|
$('.vote_add').on('click', function () {
|
|
|
|
|
$(".vote_list").append(
|
|
|
|
|
"<div id=\"array_tag\" class=\"control-label text-left\" style=\"padding-left:260px;\" >" +
|
|
|
|
|
"<input class='vote_input' name='vote_content' placeholder='투표 내용을 입력하세요.( 20글자 제한 )' style=\"border: 1px solid #ccd0d4;width:90%\" >" +
|
|
|
|
|
"<input class='vote_input' name='vote_content' placeholder='투표 내용을 입력하세요.(최대 20자)' style=\"border: 1px solid #ccd0d4;width:90%\" >" +
|
|
|
|
|
"<span> </span><a onclick=\"fncRemove(this);\"><img src=\"${URL_ROOT}/m/img/close_ico.png\" style=\"height: 20px; width: 20px;\"></a>" +
|
|
|
|
|
"</div>"
|
|
|
|
|
);
|
|
|
|
|