我有一个这样的 jQuery 函数:
$(function(){
function unshareDialog(event) {
$( "#dialog-confirm" ).dialog({
resizable: false,
height:200,
width: 365,
modal: true,
buttons: {
"Unshare": function() {
$('#unshare_form').submit();
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
return false;
}
$('#unshare_entire_file').click(unshareDialog);
});
我的表单有两个提交按钮,如下所示:
<form action="/unshare/" id="unshare_form" method="post">
<input type="submit" value="Unshare" name="unshare_to_user" id="unshare_to_user" />
<input type="submit" value="Unshare" id="unshare_entire_file"
name="unshare_entire_file" />
</form>
在服务器中,我这样做:
if request.POST.get('unshare_entire_file'):
...unshare for file
else
..unshare for user
但事实证明,当我使用它提交表单时jQuery
不起作用。我想知道单击了哪个提交按钮并进行了相应的处理。我怎样才能做到这一点?