gpt4 book ai didi

javascript - HTML 表单重置我的 Javascript 变量

转载 作者:行者123 更新时间:2023-12-03 02:24:05 25 4
gpt4 key购买 nike

美好的一天!

我的表单具有用于按钮的 JavaScript 函数,用于从表中添加行并重置表单本身中的文本字段。

在我的添加按钮中,我有一个递增变量 rowCount ,用于计算行数。它运行良好并且达到了我的预期。当我把它放在 <form></form> 里面时标记,它停留在 2,不增加并且根本不添加行。

这是我的代码供我们引用和调试。提前致谢!

var rowCount = 1;

function addRow() {
var table = document.getElementById('tblOrder');
rowCount = rowCount + 1;
var row = table.insertRow(rowCount);
var cell0 = row.insertCell(0);
var cell1 = row.insertCell(1);
var cell2 = row.insertCell(2);
var cell3 = row.insertCell(3);
var cell4 = row.insertCell(4);
var cell5 = row.insertCell(5);

cell0.innerHTML = "<input type='text'>";
cell1.innerHTML = "<input type='number'>";
cell2.innerHTML = "<input type='text'>";
cell3.innerHTML = "<input type='text'>";
cell4.innerHTML = "<input type='text'>";
cell5.innerHTML = "<input type='text'>";
alert(rowCount)
}

function resetForm() {
document.getElementById('orderForm').reset();
alert('All cleared!')
}
body	{
font-family: Calibri;
font-weight: bold;
}

#main {
width: 90%;
border: 1px solid black;
margin: auto;
position: relative;
padding-bottom: 10px;
}

#mainTitle {
text-align: center;
text-decoration: underline;
/* font-weight: bold; */
font-size: 36px;
margin-top: 20px;
margin-bottom: 20px;
}

#cust, #prod {
width: 90%;
position: relative;
margin: auto;
border: 1px solid black;
padding: 20px;
}

#cust {
margin-bottom: 20px;
}

#prod {
margin-bottom: 10px;
}

#custTitle, #prodTitle {
color: blue;
font-size: 25px;
/* font-weight: bold; */
text-decoration: underline;
margin-bottom: 20px;
/* position: relative; */
}

#cust p {
display: block;
}

#cust input {
display: inline;
}

#right {
position: absolute;
top: 0;
right: 0;
padding: 10px;
/* border: 1px solid black; */
}

#right p {
right: 0;
}

#tblOrder {
width: 100%;
border: 1px solid black;
}

#tblOrder thead {
background-color: darkgreen;
color: white;
font-size: 18px;
}

#tblOrder td {
text-align: center;
padding: 5px;
}

#inp1 {
width: 5%;
}

#inp2 {
width: 10%;
}

#inp3, #inp5, #inp6 {
width: 15%;
}

#inp4 {
width: 40%;
}

#tblOrder tr td input {
width: 95%;
}

#add {
color: blue;
font-weight: bold;
background-color: white;
border: 1px solid white;
margin-top: 10px;
}

#foot {
position: relative;
width: 90%;
margin: auto;
/* border: 1px solid black; */
}

#buttons {
position: relative;
left: 0;
/* display: inline; */
}

#total {
position: absolute;
right: 0;
/* display: inline; */
}
<!DOCTYPE html>
<html>
<head>
<title>Forms</title>
<link type='text/css' rel='stylesheet' href='style.css'>
<script type='text/javascript' src='script.js'></script>
</head>
<body>
<div id='main'>
<div id='mainTitle'>
Order Form
</div>
<form id='orderForm'>
<div id='cust'>
<div id='custTitle'>
Customer
</div>
<div id='left'>
<p>Customer Name: <input type='text' size=80></p>
<p>Address: <input type='text' size=100></p>
<p>Contact Name: <input type='text' size=80></p>
<p>Phone: <input type='text' size=15>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Mobile: <input type='text' size=15></p>
<p>E-mail Address: <input type='text' size=30>@<input type='text' size=10>.com</p>
</div>
<div id='right'>
<p>Order Date: <input type='text' placeholder='mm/dd/yyyy' size=11></p>
<p>Order Number: <input type='text' size=5></p>
</div>
</div>
<div id='prod'>
<div id='prodTitle'>
Products to Order
</div>
<div id='order'>
<table id='tblOrder'>
<thead>
<td id='inp1'>Unit</td>
<td id='inp2'>Quantity</td>
<td id='inp3'>Product Code</td>
<td id='inp4'>Description</td>
<td id='inp5'>Unit Price</td>
<td id='inp6'>Total Price</td>
</thead>
<tbody>
<tr>
<td><input type='text'></td>
<td><input type='number'></td>
<td><input type='text'></td>
<td><input type='text'></td>
<td><input type='text'></td>
<td><input type='text'></td>
</tr>
</tbody>
</table>
<button id='add' onclick='addRow()'>+Row</button>
</div>
</div>
<div id='foot'>
<div id='total'>
Total: <input type='text' disabled>
</div>
<div id='buttons'>
<button>Submit</button>
<button onclick='resetForm()'>Reset</button>
</div>
</div>
</form>
</div>
</body>
</html>

最佳答案

如果按钮放在表单中,它们默认会成为提交按钮,这意味着它们在单击时提交表单。如果表单没有指定操作,它将被提交到与页面相同的 URL,这会导致页面被刷新。这就是您的情况所发生的情况。

要防止按钮提交表单,请将其type 设置为通用按钮而不是提交按钮:

<button type="button"></button>

关于javascript - HTML 表单重置我的 Javascript 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49029514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com