我正在使用php,bootbox和ajax开发聊天提交表单,对,但我无法使用ajax提交表单!
$(document).ready(function(){
$("#startchat").click(function(){
bootbox.confirm("<center><form id='infos' method='POST' action=''>\
<p style='font-size:25px'>Formulário para Inicialização do Chat</p>\
Nome: <input type='text' name='nome'></input><br/><br/>\
Email: <input type='text' name='email'></input>\
</form></center>", function(result) {
if(result){
$('#infos').submit();
$.ajax({
type: 'post',
url: 'dateRecd.php',
data: 'nome=' + nome + '&email=' + email,
success: function(data){
alert(nome+' e '+email);
}
});
}
});
});
});
好吧,我需要将表单提交到下一页 dateRecd.php 插入日期并使用两个参数调用此聊天函数 chatWith(id,name)聊天,Id和名称,它们是在mySQL中获取的数据!
我不知道哪里出错了,我正在使用bootbox
<a href="javascript:void()" id="startchat">
<img src="banner.jpg">
</a>