


For example, among the following options, we require those with * to be selected, see the picture:
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:
Assuming one is selected, the prompt message will disappear immediately, as shown below:
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:
/**
* 数组存储器 主要是为了方便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、中国電子科学技術大学
*/
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: 検証する必要がある複数選択または単一選択のタイトルのグループの後に入力を追加します:
コードをコピー
コードは次のとおりです:
コードは次のとおりです。
MapArr に配列を追加します:
コードをコピーします
コードは次のとおりです:
コードをコピーします
コードは次のとおりです:
重要な点: onclick の第 2 パラメータの id と一致する MapArr で追加された配列変数の変数名と input の id が一致する 設定の key の値が input の id と一致する。設定の value の値は、この配列が構成されています。さて、これで検証を実装できるようになりました。

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

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.
