当前位置: 技术问答>java相关
请问如何在JSP中检测重复的输入,并用JavaScript的alert方法提示?
来源: 互联网 发布时间:2015-06-05
本文导语: 下面是我的程序代码,我的检测方法是在本页面提示,但现在是要用JavaScript的alert方法提示,我不知道如何将JSP的SQL查寻结果和JavaScripT相联系,请帮帮忙? function sub( ){ var i=1; if(i ==1){ ...
下面是我的程序代码,我的检测方法是在本页面提示,但现在是要用JavaScript的alert方法提示,我不知道如何将JSP的SQL查寻结果和JavaScripT相联系,请帮帮忙?
function sub( ){
var i=1;
if(i ==1){
window.alert("the CategoryCode is find ,please enter again!");
document.AddCategory.CategoryCode.focus();
i =0;
return false;
}
if(document.AddCategory.CategoryCode.value==""){
window.alert("please enter CategoryCode!");
document.AddCategory.CategoryCode.focus();
return false;
}
if(document.AddCategory.CategoryCode.value.length>2){
window.alert("the strCode length must two bit ,please enter again!");
document.AddCategory.CategoryCode.focus();
return false;
}
if(document.AddCategory.CategoryName.value==""){
window.alert("please enter CategoryName!");
document.AddCategory.CategoryName.focus();
return false;
}
if(document.AddCategory.CategoryName.value.length>20){
window.alert("the Category length must too length ,please enter again!");
document.AddCategory.CategoryName.focus();
return false;
}
return true;
}
Address
function sub( ){
var i=1;
if(i ==1){
window.alert("the CategoryCode is find ,please enter again!");
document.AddCategory.CategoryCode.focus();
i =0;
return false;
}
if(document.AddCategory.CategoryCode.value==""){
window.alert("please enter CategoryCode!");
document.AddCategory.CategoryCode.focus();
return false;
}
if(document.AddCategory.CategoryCode.value.length>2){
window.alert("the strCode length must two bit ,please enter again!");
document.AddCategory.CategoryCode.focus();
return false;
}
if(document.AddCategory.CategoryName.value==""){
window.alert("please enter CategoryName!");
document.AddCategory.CategoryName.focus();
return false;
}
if(document.AddCategory.CategoryName.value.length>20){
window.alert("the Category length must too length ,please enter again!");
document.AddCategory.CategoryName.focus();
return false;
}
return true;
}
Address
-
Options
-
Sign Out
UserID@hitish.com