onFocus: フォーカスを取得するためのテキストプロンプト (スタイルが指定されている場合は、スタイル名の前に @ を追加します。そのため、テキストプロンプトの最初の文字に @ を含めることはできません)
onEmpty : 入力項目は空のテキスト プロンプトです (スタイルが指定されている場合は、スタイル名の前に @ を追加します。そのため、テキスト プロンプトの最初の文字に @ を含めることはできません)
onSucces: テキスト検証が成功したことを示すプロンプト (スタイルが指定されている場合は、スタイル名の前に @ を追加します。そのため、テキスト プロンプトの最初の文字に @ を含めることはできません)
onBlur: フォーカスを失ったテキスト プロンプト (スタイルが指定されている場合)指定する場合は、スタイル名の前に @ を追加します。そのため、テキスト プロンプトの最初の文字に @ を含めることはできません) (検証失敗プロンプト)
/**
* 入力項目の範囲を確認します
* 入力パラメータ:
* onFocus: フォーカスを取得するためのテキスト プロンプト (スタイルが指定されている場合は、スタイル名の前に @ を追加します。テキスト プロンプトには @ を含めることはできません)
* onEmpty: 入力項目が空の場合のテキスト プロンプト (スタイルが指定されている場合、スタイル名の前に @ が追加されるため、テキスト プロンプトの最初の文字に @ を含めることはできません)
* onSucces: 検証が成功したときのテキスト プロンプト (スタイルが指定されている場合、スタイル名の前に @ が追加されます。そのため、テキスト プロンプトの最初の文字に @ を含めることはできません)
* onBlur: フォーカスを失ったテキスト プロンプト(スタイルが指定されている場合は、スタイル名の前に @ を追加します。そのため、テキスト プロンプトの最初の文字に @ を含めることはできません) (検証失敗プロンプト)
* dataType : データ型パラメーター (テキスト、数値、日付)
* min : 入力された最小値
* max : 入力された最大値
*tipId : プロンプト情報の表示に使用されるコントロール ID (*)
*
*/
$.fn.extend({
checkRange :function(inputArg){
if ($(this).is("input") || $(this).is(" textarea")) {
//フォーカス バインディングを取得
$( this).bind("focus",function(){
if(inputArg.onFocus!=unknown){
$( "#" inputArg.tipId).html(inputArg.onFocus);
}
});
//フォーカス バインディングが失われました
$(this).bind("blur",function( ){
if($(this).val()==unknown || $(this).val()==""){
$("#" inputArg.tipId).html(inputArg .onEmpty);
}else{
switch(inputArg.dataType){
case "text":
if($(this).val().length>= parseInt(inputArg.min ) && $(this).val().length< parseInt(inputArg.max)) {
$("#" inputArg.tipId).html(inputArg.onSucces);
}else{
$("#" inputArg.tipId).html(inputArg.onBlur); }
ブレーク;
ケース "番号":
if(!isNaN($(this).val() )){
if(parseInt($(this).val())> ;parseInt(inputArg.min) && parseInt($(this).val())
$("#" inputArg.tipId).html(inputArg.onSucces); 🎜>}else{ $("#" inputArg.tipId).html(inputArg.onBlur); } } break case "date": break; ; } } }); 入力範囲の効果とテストコード
onBlur :"検証に失敗しました。慎重に入力してください。"、
dataType: "number"、
min: "10"、
max: "100"、
tipId: "txtAgeTip"
}) ;
年齢:4. Comparison of the input parameter and the value of another control The difference from the above verification comparison is that you need to specify the id of the comparison control The following is Input parameters: onFocus: Text prompt to obtain focus (if a style is specified, add @ before the style name, so the first letter of the text prompt cannot have @) onEmpty: Text prompt for an empty input item ( If a style is specified, @ is added before the style name, so the first letter of the text prompt cannot contain @) onSucces: Text prompt for successful verification (if a style is specified, @ is added before the style name, so the first letter of the text prompt cannot be @) onBlur: text prompt that loses focus (if a style is specified, add @ before the style name, so the first letter of the text prompt cannot have @) (validation failure prompt) dataType: data type Parameters (text, number, date) comType: comparison type (=,>,>=,<,<=,!=) tipId: used for display Prompt information control id (*) targetId: comparison target control Id /** * Comparison between control values * Input parameters: * onFocus: text prompt to obtain focus (if a style is specified, add @ in front of the style name, so the first letter of the text prompt cannot have @) * onEmpty: text prompt when the input item is empty (if a style is specified, @ is added before the style name, so the first letter of the text prompt cannot have @) * onSucces: text prompt when verification is successful (if a style is specified, @ is added before the style name) , so the first letter of the text prompt cannot have @) * onBlur: text prompt that has lost focus (if a style is specified, add @ before the style name, so the first letter of the text prompt cannot have @) (validation failure prompt) * dataType: data type parameters (text, number, date) * comType: comparison type (=,>,>=,<,<=,!=) * tipId: used for display Control id of prompt information (*) * targetId: Comparison target control Id */ $.fn.extend({ checkCompare:function(inputArg){ if($(this). is("input") || $(this).is("textarea")){ //Get focus binding $(this).bind("focus",function(){ if(inputArg.onFocus!=undefined){ $("#" inputArg.tipId).html(inputArg.onFocus); } }); //Lost focus binding $(this).bind("blur",function(){ var targetValue=$("#" inputArg.targetId).val(); if(targetValue!=undefined && targetValue! =null){ if($(this).val()!=undefined && $(this).val()!=""){ if(inputArg.dataType=="text"){ switch(inputArg.comType){ case "=": if(targetValue==$(this).val()){ $("#" inputArg.tipId).html (inputArg.onSucces); }else{ $("#" inputArg.tipId).html(inputArg.onBlur); } break; case "!=": if(targetValue!=$(this).val()){ $("#" inputArg.tipId).html(inputArg.onSucces); }else{ $(" #" inputArg.tipId).html(inputArg.onBlur); } break; } }else if(inputArg.dataType=="number"){ if (isNaN (targetValue) == false && isNaN($(this).val()) == false) { switch (inputArg.comType) { case "=": if (targetValue == $ (this).val()) { $("#" inputArg.tipId).html(inputArg.onSucces); } else { $("#" inputArg.tipId) .html(inputArg.onBlur); } break; case "!=": if (targetValue != $(this).val()) { $(" #" inputArg.tipId).html(inputArg.onSucces); } else { $("#" inputArg.tipId).html(inputArg.onBlur); } break; case ">": if ($(this).val() > targetValue) { $("#" inputArg.tipId).html(inputArg.onSucces); } else { $("#" inputArg.tipId).html(inputArg.onBlur); } break; case ">=": if ($(this).val() >= targetValue) { $("#" inputArg.tipId).html(inputArg.onSucces); } else { $( "#" inputArg.tipId).html(inputArg.onBlur); } break; case "<": if ($(this).val() < targetValue) { $("#" inputArg.tipId).html(inputArg.onSucces); } else { $("#" inputArg.tipId).html(inputArg.onBlur); } break; case "<=": if ($(this).val() <= targetValue) { $("#" inputArg.tipId) .html(inputArg.onSucces); } else { $("#" inputArg.tipId).html(inputArg.onBlur); } break; } }else{ $("#" inputArg.tipId).html(inputArg.onBlur); } }else if(inputArg.dataType=="date"){ } }else{ $("#" inputArg.tipId).html(inputArg.onEmpty); } } }); } } });
Comparison effect and test code between control values
Rendering 1
Rendering 2
Rendering 3
$("#txtPass2").checkCompare({
onFocus: "Compare with the previous one",
onEmpty: "The input cannot be empty",
onSucces: "Verification successful ",
onBlur:"Verification failed",
dataType:"number",
comType:">=",
tipId:"txtPass2Tip",
targetId:"txtPass1"
});
Password 1:
Password 2:
5. Input Parameter regular expression verification
This verification is relatively simple, because using regular expressions, you don’t need to think about the input situation yourself. You only need to introduce a regular expression
The following are the input parameters:
onFocus: text prompt to obtain focus (if you specify a style, add @ before the style name, so the first letter of the text prompt There cannot be @)
onEmpty: The input item is an empty text prompt (if a style is specified, add @ before the style name, so the first letter of the text prompt cannot have @)
onSucces: Text prompt for successful verification (If you specify a style, add @ before the style name, so the first letter of the text prompt cannot be @)
onBlur: Text prompt that loses focus (If you specify a style, add @ before the style name, so the first letter of the text prompt cannot be There is @) (validation failure prompt)
regExp: regular expression
tipId: control id used to display prompt information (*)
jQuery regular expression verification
/** * Validation of regular expressions * Input parameters: * onFocus: text prompt to obtain focus (if a style is specified, add @ in front of the style name, so the first letter of the text prompt cannot have @) * onEmpty: text prompt when the input item is empty (if a style is specified, @ is added before the style name, so the first letter of the text prompt cannot have @) * onSucces: text prompt when verification is successful (if a style is specified, @ is added before the style name, Therefore, the first letter of the text prompt cannot have @) * onBlur: Text prompt that has lost focus (if a style is specified, add @ before the style name, so the first letter of the text prompt cannot have @) (validation failure prompt) * regExp : Regular expression * tipId : Control id used to display tip information (*) */ $.fn.extend({ checkRegExp:function(inputArg){ if ($(this).is("input") || $(this).is("textarea")) { //Get focus binding $(this).bind("focus", function(){ if (inputArg.onFocus != undefined) { $("#" inputArg. tipId).html(inputArg.onFocus); } }); //Get the lost focus event $(this).bind("blur",function(){ if($(this).val()!=undefined && $(this).val()!=""){ if ($(this).val().match(inputArg.regExp ) == null) { $("#" inputArg.tipId).html(inputArg.onSucces); }else{ $("#" inputArg.tipId).html(inputArg.onBlur ); } }else{ $("#" inputArg.tipId).html(inputArg.onEmpty); } }); } } });
Regular expression effects and test code
Enter non-digits
Enter the number
$("#txtAge").checkRegExp({ onFocus: "Age must be a number", onEmpty: "The input cannot be empty", onSucces: "Verification successful ", onBlur:"Verification failed", regExp:/D/, tipId:"txtAgeTip" }); Age: < ;input type="text" id="txtAge" value=""/>
This is a basic verification plug-in The prototype, we will continue to update in the later stage...