我正在创建一个带有Sweet Alert的表单,我在swal函数中有一个post请求,但是当我点击提交时没有任何反应。希望得到一些帮助。
$scope.formModal = function(){
swal({background:'#ACF1F4',html:"<form method='post' id='loginform'>Username:
<input id='username' name='username' >
<br><br>Password:<input type='password' id='password' name='password'><br> <br></form>",
confirmButtonText: 'Submit',showCancelButton: true}
, function(){
$http.post("login.php",{"username":username,"password":password})
.success(function(data){swal(data)})
}
);
}
答案 0 :(得分:0)
这里有多个问题:
swal
来电title
swal
参数
我不太确定你是否可以在SweetAlert中创建一个表单,至少在他们的页面中没有例子。
swal({background:'#ACF1F4', html:true, title:"<form method='post' id='loginform'>Username: <input id='username' name='username' style='width: 100%' ><br><br>Password:<input type='password' id='password' name='password'><br> <br></form>",
confirmButtonText: 'Submit',showCancelButton: true})