您有两个具有相同 ID 的按钮。将 id 更改为 2 个不同的名称或使其成为同一类的一部分。
不同的身份证
<input id="btn_sendmsg1" name="send_message" type="button" value="SEND MESSAGE 1" />
<input id="btn_sendmsg2" name="send_message" type="button" value="SEND MESSAGE 2" />
//Add a click handler for each id
$("#btn_sendmsg1").live('click', function(){
parameters = $('#form1').serialize();
alert(parameters);
});
$("#btn_sendmsg2").live('click', function(){
parameters = $('#form1').serialize();
alert(parameters);
});
同班
<input id="btn_sendmsg1" name="send_message" type="button" class="btn" value="SEND MESSAGE 1" />
<input id="btn_sendmsg2" name="send_message" type="button" class="btn" value="SEND MESSAGE 2" />
//This click handler is attached to the class
$(".btn").live('click', function(){
parameters = $('#form1').serialize();
alert(parameters);
});