0
「刪除」不工作&無法刪除POP_UP窗口遺漏的類型錯誤:無法讀取屬性未定義
function add_comm(){
if($("#fio").val().length>0&&$("#ms_comment").val().length>0){
$.post('/send.php',{subject:"Комент",message:"FIO: "+$("#fio").val()+"<br /> Comment: "+$("#ms_comment").val()+"<br>"});
$(".bs-example-modal-sm").modal("show");
$('.bs-example-modal-sm .modal-content')[0].remove();
$("#ffrr").html('We call U');
}else{
alert('Warning');
}
}
HTML
<button type="button" class="btn btn-default" onclick="add_comm(); return true;">Send</button>
你能告訴我們代碼實際上應該做什麼嗎? – Gerton
在.remove()之前刪除[0]。它會工作 –