var win = window.open('', "", 'height=200,width=400,top=200,left=400,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no, titlebar=no');
win.document.open('text/html', 'replace');
win.document.write(s);
win.document.close();
}
function submitForm() {
var form = new mini.Form("#form1");
form.validate();
if (form.isValid() == false) {
var errorTexts = form.getErrorTexts();
showErrorTexts(errorTexts);
return;
}
//window.location.replace("http://www.baidu.com");
//提交数据
var data = form.getData();
var json = mini.encode(data);
alert("提交成功");
}
function submitForm1() {
response.sendRedirect("http://www.baidu.com");
alert("提交成功");
}
function submitlogin() {
var txt_username = document.getElementById("username").value;
var txt_pwd = document.getElementById("pwd").value;
// var msgid = mini.loading("数据查询中,请稍后......");
// window.location.replace("http://www.baidu.com");
var str = '<%=GetStr()%>';
alert(str);
}