我正在使用通知toastr
js 的 jQuery 插件(http://codeseven.github.io/toastr/),我试图在通知气球中添加一个联系表单,并在提交时使用 AJAX。即使表单在外部工作,toastr.info('')
我也无法在脚本中实现。当我单击提交时,它会刷新页面。
我怎样才能解决这个问题 ?
Ajax 脚本
$(function(){
$("#contactform").submit(function(event){
event.preventDefault();
$.post('mailme.php', $("#contactform").serialize(), function(data) {
});
});
});
HTML 表单
<form id="contactform" method="post" name="myform">
<input name="phone" type="text"><input id="submit" name="Submit" type="submit" value="send">
</form>
toastr.info('I put the above HTML code in here')
小提琴