我在html中有此按鈕調用jQuery來確認刪除傳遞價值,jQuery和PHP
<div class='delete' name='<?php echo $story_id; ?>'>delete book</div>
,這是我的jQuery文件
$(document).ready(function(){
$('.delete').click(function(){
var del_id = $(this).attr('name');
$.confirm({
'type':'POST',
'data':'delete_id='+del_id,
'title' : 'Delete Book Confirmation',
'message' : 'You are about to delete this book. <br />It cannot be restored at a later time! Do you still want to continue?',
'buttons' : {
'Yes' : {
'class' : 'blue',
'action': function(){
document.location.href="sample2.php";
}
},
'No' : {
'class' : 'gray',
}
}
});
});
});
的按鈕應該值傳遞給jQuery的並且如果單擊警報中的是按鈕,則該值應該隨後傳遞給sample2.php。我該怎麼辦?對不起,我是新的jquery。 var del_id = $(this).attr('name');
不起作用。
div沒有onclick事件或名稱屬性。這是不好的HTML! http://www.w3schools.com/tags/tag_div.asp考慮使用或
另外...什麼是'$ .confirm'。那是一個插件嗎? – McGarnagle
我將其替換爲。我如何通過價值? – Nhiz