我有这个代码:
$(document).on('submit','#roomsend',function(e) {
var form = $('#roomsend');
var data = form.serialize();
$.post('php/roomlist.php', data, function(response) {
console.log(response);
$('#power').replaceWith(response);
});
return false;
});
这适用于表单内的提交按钮。但现在我在表单外有一个按钮:
<button class="btn btn-success" id="roomsendbutton"><i class="icon-ok"></i> Save</button>
我必须如何成为代码,当我单击按钮时,所有操作都将起作用并且表单提交?