search
HomeWeb Front-endJS TutorialSingle-select and multiple-select examples in jquery validation forms_jquery

For example, among the following options, we require those with * to be selected, see the picture:

Single-select and multiple-select examples in jquery validation forms_jquery

Have you seen the page above? I have to select one of the multiple selections under the business processing channel. What should I do? If none is selected, we will prompt an error message when the form is submitted. Everyone knows that jquery input verification is very simple, but it is rarely necessary to verify multiple selections or single selections. Moreover, it is a group verification, which is divided into groups, not all on the page! ! What to do?

Is it okay to use something else instead of jquery? Can! ! ! But we still use jquery to implement it.

Let’s take a look first. The effect without selection should look like this:

Single-select and multiple-select examples in jquery validation forms_jquery

Assuming one is selected, the prompt message will disappear immediately, as shown below:

Single-select and multiple-select examples in jquery validation forms_jquery

In fact, this can be achieved using jsmap, that is, using js to simulate map. The following code is public. If you encounter this situation in the future, just copy the following js code and make some configurations to achieve it.

Use the following code, you must introduce jquery verification js

The code is as follows:

First, put the following js code into your js file or page:

Copy the code Code As follows:

/**
* 数组存储器 主要是为了方便juery验证chckbox而设计                   数组存储器,配置对象,为验证checkbox 和单选。
* 私有变量区定义数组
* 然后把每一个数组配置到setting里面,这样这个数组就存在于存储器中
* 在应用的时候用数组名即可方便地操作和得到不同的数组。
* 当你需要某个数组的时候,如果你只操作一个数组那这个方法是多于的,但如果你操作多个数组或只有数组名的情况下,这个存储器就很有用。
* @author 电子科大科园 庄濮向
* @return 数组存储器对象
*/
var MapArr = (function () {

    var BHC = [], BCC = [], BQC = [], IC = [];
    var BAC = [];
    var BUC = [];

    var setting = [
            {
                key: "BHC",
                value: BHC
            },
            {
                key: "BAC",
                value: BAC

            }, { key: "BUC", value: BUC }, { key: "BCC", value: BCC }, { key: "BQC", value: BQC }, {key:"IC",value:IC}
            ];

    return {

        //通过数组名得到数组织
        getArr: function (arr_name) {
            for (var setting_i = 0, setting_len = setting.length; setting_i                 if (setting[setting_i].key == arr_name) {
                    return setting[setting_i].value;
                }
            }
        },
        //删除指定数组中的某一个元素
        delArr: function (arr_name, elementValue) {
            for (var delArr_i = 0, delArr_len = setting.length; delArr_i                 if (setting[delArr_i].key == arr_name) {
                    for (var arr_i = 0, arr_len = setting[delArr_i].value.length; arr_i                         if (setting[delArr_i].value[arr_i] == elementValue) {
                            setting[delArr_i].value.splice(arr_i, 1);
                        }
                    }

for (var PushArr_i = 0, PushArr_len = settings.length; PushArr_i
}
}
}

} ());


/**
*チェックボックスまたはラジオのクリックイベントが上のマップに適用されます
* @author Zhuang Puxiang、中国電子科学技術大学

* @return array memory object

*/

function chk(event, arrName) {


if (event.checked == true) {
//arrName という名前の配列に要素を追加します
MapArr.pushArr(arrName,event.value);
} else {
/ /arrName
という名前の配列から要素を削除します。 MapArr.delArr(arrName,event.value);

}


var checkInput = document.getElementById(arrName);

if (MapArr.getArr(arrName)[0] == '未定義' || MapArr.getArr(arrName)[0] == null) {
checkInput.value = null; // 彼にこの配列の値を与えます。 。 この場合、検証の効果があります
} else {
} checkInput.value = MapArr.getArr(arrName)[0];

}

//プロンプト情報を表示する方法値を追加すると消えますか?
if (!$("#form1").valid()) return false; //この章を展開して非表示にするだけなので、送信されたチェックは実行しないでください。章の表示に影響します
}


2: 検証する必要がある複数選択または単一選択のタイトルのグループの後に入力を追加します:




コードをコピー



コードは次のとおりです:
3: チェックボックスまたはラジオ タグにイベントを追加します:


コードをコピー

コードは次のとおりです。

onclick="chk(this,'BAC ')" 4: 一貫性: 「2」の入力はプロンプト情報に使用されるため、ID と名前が存在する必要があり、上記のように名前が一貫している必要があります: id= " BAC", name="BAC"、入力が書き込まれた後、イベントを追加するとき、2 番目のパラメーターは入力の ID と同じ名前を持つ必要があり、また BAC である必要があります。
5: 構成。顔の準備ができたら、それがコア構成です。この構成をどこで構成するかは、上で紹介するようにお願いした JS コード内にあります。 onclick="chk(this,'BAC')" は、各チェックまたは無線選択にイベントを追加することを意味します。これは、このチェックを BAC アレイに適用する必要があることも意味するため、[アレイの構成] 設定に進みます。

MapArr に配列を追加します:

コードをコピーします


コードは次のとおりです:

var BAC =[];MapArr の設定にオブジェクトを追加します:


コードをコピーします


コードは次のとおりです:
必ず整合性を確保してくださいそうしないと成功しません。
重要な点: onclick の第 2 パラメータの id と一致する MapArr で追加された配列変数の変数名と input の id が一致する 設定の key の値が input の id と一致する。設定の value の値は、この配列が構成されています。さて、これで検証を実装できるようになりました。
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.