search
HomeWeb Front-endJS TutorialJS adds and deletes a group of text boxes and verifies the input information to determine its correctness_javascript skills

We encountered such a problem during the project, that is, we need to add several sets of data to the database, but the specific sets of data are not sure and have to be filled in by customers. For example, we need to add a discount strategy. There may be many sets of plans for each strategy, such as " 50% off for purchases over 100, 40% off for purchases over 200, 30% off for purchases over 500, etc. This is implemented as a set of plans, but it is not certain how many sub-plans there are in a set of plans, so here I use JS Add and delete sub-schemes, and judge the correctness of the scheme input, and write it to the database through json transmission. Here we mainly write how to add and delete a group of sub-projects and how to add verification to each text box.

Dynamicly add a group of text boxes:

Copy the code The code is as follows:

var countTable = 0;
//Add table rows
addTable = function () {
//Get the table
var tab1 = document.getElementById("discountTable");
// The number of all cells in the table
// cell = tab1.cells.length;
//The number of rows in the table
n = tab1.rows.length;
//The number of columns in the table
//cell = cell / n;
//Add a row to the table
r = tab1.insertRow(n);
//Add each cell of the current row
r. insertCell(0).innerHTML = 'Spend X yuan: ';
r.insertCell(1).innerHTML = 'Discount rate:';
r.insertCell(2).innerHTML = '';
countTable = countTable 1;
}

Note:
1. The countTable here should be all variables, used to identify each row, so as to ensure that each row is different and prevent duplicate IDs after deleting a row. Condition.
2. A focus leaving event is added here for each text, that is, when the focus leaves the current text box, we need to determine whether it matches the input.
3. A label is added after the text box as a verification control. When the text we enter does not meet the requirements, the label will be visible.
Delete any line:
Copy code The code is as follows:

//Delete the current line
deleteTable = function (el) {
// alert( el.id);
//Get table
var tab1 = document.getElementById("discountTable");
//Loop Determine the rows that need to be deleted
for (i = 0; i //Get the ID of the row
var deleteValue = tab1.rows[i].cells[ 2].childNodes[0].id;
//Loop to get the id of each row and compare it with the currently clicked ID. If they are the same, delete them
if (el.id == deleteValue) {
tab1.deleteRow (i);
break; One line is the line in the current point, and then deleted.
How to show and hide validation controls (judge the text when the focus leaves the text):



Copy code

Code As follows: //Verify whether the first information input is legal terifyNumFirst = function (objText) { var terifyText = objText.value; //The information cannot be empty
if (terifyText== "")
{
objText.parentNode.children[1].style.display="block";
return;
}
//Information Must be a number
if (isNaN(terifyText))
{
objText.parentNode.children[1].style.display = "block";
return;
}
objText .parentNode.children[1].style.display = "none";
}


When all information needs to be written, we also need to make a judgment. If there is an illegal prompt, Otherwise, the datatable is generated and returned. The specific method of transmitting it to the background will be written in the next blog.



Copy code

The code is as follows:

//Generate DataTable object
function generateDtb() {
//Determine whether the data can be written to the flag, false means it can be written, true means it cannot be written
var flag = false;
//Get table
var tab1 = document.getElementById("discountTable");
//First column data
var firstGroup = document.getElementsByClassName("groupFirst");
//Second column data
var secondGroup = document.getElementsByClassName("groupSecond");
//Determine whether the verification information is legal
var veritify = document.getElementsByClassName("veritifyMessage");
// alert(secondGroup.item(0).value);
//Determine whether it is empty
for (var i = 0; i {
/ /Determine whether the first column of data is empty. If it is empty, display the prompt
if (firstGroup[i].value == "")
{
veritify[(i * 2)].style.display = "block";
flag = true;
}
//Determine whether the second column of data is empty. If it is empty, a prompt will be displayed
if (secondGroup[i].value == "" )
{
veritify[(i * 2 1)].style.display = "block";
flag = true;
}
}
for (var i = 0 ; i {
if (veritify[i].style.display == "block")
{
flag = true;
}
}
// alert(veritify.length);
//Any information entered is legal, then the current information is organized into an array and the information is returned for processing.
if (flag == false) {
//Write
var txtName = document.getElementById("txtName").value;
//Create array
var dtb = new Array ();
//Write data to the array through loop and return
for (var i = 0; i var row = new Object();
row.Name = txtName;
row.fullMoney = firstGroup[i].value;
row.discount = secondGroup[i].value;
dtb.push(row);
}
return dtb;
}

The verification here is also relatively simple. It just verifies whether the text box input is empty and whether it is a number, and uses the display and hiding of a label to determine whether According to the input, I will write in the next article how to pass the array into the background and write it to the database.
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
OneNote如何设置图片为背景OneNote如何设置图片为背景May 14, 2023 am 11:16 AM

Onenote是Microsoft提供的最好的笔记工具之一。结合Outlook和MSTeams,Onenote可以成为提高工作和个人创意工作效率的强大组合。我们必须以不同的格式做笔记,这可能不仅仅是把事情写下来。有时我们需要从不同来源复制图像并在日常工作中进行一些编辑。如果知道如何应用更改,则粘贴在Onenote上的图像可以发挥很大作用。您在使用Onenote时是否遇到过粘贴在Onenote上的图像无法让您轻松工作的问题?本文将着眼于在Onenote上有效地使用图像。我们可

如何隐藏文本直到在 Powerpoint 中单击如何隐藏文本直到在 Powerpoint 中单击Apr 14, 2023 pm 04:40 PM

如何在 PowerPoint 中的任何点击之前隐藏文本如果您希望在单击 PowerPoint 幻灯片上的任意位置时显示文本,那么设置起来既快速又容易。要在 PowerPoint 中单击任何按钮之前隐藏文本:打开您的 PowerPoint 文档,然后单击“插入 ”菜单。单击新幻灯片。选择空白或其他预设之一。仍然在插入菜单中,单击文本框。在幻灯片上拖出一个文本框。单击文本框并输入您

如何在 Word 中制作日历如何在 Word 中制作日历Apr 25, 2023 pm 02:34 PM

如何使用表格在Word中制作日历如果您想创建一个完全符合您的规范的日历,您可以使用Word中的表格从头开始做所有事情。这使您可以为日历设计所需的确切布局。在Word中使用表格创建日历:打开一个新的Word文档。按Enter几次,将光标向下移动到页面。单击插入 菜单。在功能区中,单击表格图标。单击并按住左上角的方块并拖出一个7×6的表格。在第一行填写星期几。使用另一个日历作为参考填写月份中的日期。突出显示当前月份之外的任何日期。在主菜单中,单击文本颜色图标并选择灰色。对当前月份以

html文本框类型有哪些html文本框类型有哪些Oct 12, 2023 pm 05:38 PM

html文本框类型有单行文本框、密码文本框、数字文本框、日期文本框、时间文本框、文件上传文本框、多行文本框等等。详细介绍:1、单行文本框是最常见的文本框类型,用于接受单行文本输入,用户可以在文本框中输入任意文本,例如用户名、密码、电子邮件地址等;2、密码文本框用于接受密码输入,用户在输入密码时,文本框中的内容会被隐藏,以保护用户的隐私;3、数字文本框等等。

如何在HTML文本框中添加换行符?如何在HTML文本框中添加换行符?Sep 04, 2023 am 11:05 AM

要向HTML文本区域添加换行符,我们可以使用HTML换行符标签在任意位置插入换行符。或者,我们也可以使用CSS属性“white-space:pre-wrap”自动为文本添加换行符。当在文本区域中显示预先格式化的文本时,这特别有用。因此,我们来讨论一下添加换行符的方法。方法在HTML中创建一个文本区域并为其分配一个id。创建一个按钮,单击该按钮将使用换行符分割文本区域的文本。现在创建将文本分成换行符的函数。该函数的代码为-functionreplacePeriodsWithLineBreaks()

如何编写HTML滚动条文本框代码如何编写HTML滚动条文本框代码Feb 19, 2024 pm 07:38 PM

标题:如何编写带滚动条的HTML文本框代码HTML中的文本框是常用的用户输入控件之一,在某些情况下,文本内容过长时会导致文本框显示不完整。这时,我们可以通过添加滚动条来让文本框支持滚动查看。本文将详细介绍如何编写带滚动条效果的HTML文本框代码,并给出具体的代码示例。一、使用textarea元素创建文本框在HTML中,我们使用textarea元素来创建文本框

uniapp中路由的动态添加与删除方法uniapp中路由的动态添加与删除方法Dec 17, 2023 pm 02:55 PM

Uniapp是一个基于Vue.js的跨端框架,支持一次编写,同时生成H5、小程序、APP等多端应用,并且在开发过程中十分注重性能和开发效率。在Uniapp中,路由的动态添加与删除是开发过程中经常会遇到的问题,因此本文将介绍Uniapp中路由的动态添加与删除方法,并提供具体的代码示例。一、路由动态添加动态添加路由,可以根据实际需求,在页面加载时或者用户操作后,

文本框边框怎么设置颜色文本框边框怎么设置颜色Jul 28, 2023 am 10:08 AM

设置文本框边框颜色的方法:1、选中要添加边框的文本或段落;2、在“开始”选项卡的“段落”或“字体”组中,单击“边框”按钮;3、从下拉菜单中选择一个边框样式;4、单击“边框颜色”按钮,在弹出的菜单中选择您想要的颜色;5、单击“确定”按钮以应用边框样式和颜色。

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version