私はこのコードを持っています:
$(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>
ボタンをクリックすると、すべてのアクションが機能し、フォームが送信されるようにするには、どのようにコードを作成する必要がありますか?