比如:
html里
<input type="button" onclick="check(form)" .....
js:
function check(form){
...
var url = '/check.php?var='+....;
$.get(url,function(ret){
if(ret == false){
alert('false'); //这个alert要在当前窗口
}else{
var url='/new.php';
...//弹出一个新窗口
}
......
就是大概这么一个意思,不知道怎么写?不一定按照现在的方法,多谢!
--
FROM 117.79.93.*