- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试合并一个用于向 HTML 页面动态添加行的代码。该代码独立运行良好。但是当我将它添加到带有 DIV 的下一页时,它不起作用。非常感谢您的任何意见。
会不会是因为div里面的函数$(document).ready(function()
?:(
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
var name = 'null';
document.getElementById(name).click();
window.onload = function() {
hide();
};
function hide(){
var VSalePrice = document.getElementById('VPriceSelect0');
VSalePrice.style.visibility = 'hidden';
}
$(document).ready(function() {
var x=1;
$("#mode").on('change', function () {
var rows = parseInt(this.value);
var lastRow;
for (var i = x; i < rows+x; i++) {
lastRow = $('#customers tr').last().clone();
$('#customers tr').last().after(lastRow);
document.getElementById("V_Prod_Name0").id="V_Prod_Name"+i;
document.getElementById("VPriceSelect0").id="VPriceSelect"+i;
document.getElementById("qty0").id="qty"+i;
document.getElementById("ex-gst0").id="ex-gst"+i;
document.getElementById("ngstpct0").id="ngstpct"+i;
document.getElementById("gstpct0").id="gstpct"+i;
document.getElementById("igstpct0").id="igstpct"+i;
document.getElementById("gst0").id="gst"+i;
document.getElementById("inc-gst0").id="inc-gst"+i;
}
x=i;
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="jquery-3.3.1.min.js"></script>
<div class="tab">
<button class="tablinks"id='0' onclick="openCity(event, 'Sales')">Sales</button>
</div>
<div id="Sales" class="tabcontent">
<h3>Sales</h3>
<form name="ISales" action="MultiEntry.jsp">
<table id="customers">
<th>Product</th>
<th>Quantity</th>
<th>Price</th>
<th>*CGST %</th>
<th>*SGST %</th>
<th>*IGST %</th>
<th>Total Tax</th>
<th>Total Price</th>
<th>Commission</th>
<th>Sale Date</th>
<tr>
<td>
<select id="V_Prod_Name0" name='Prod_Type' onChange="displaySalePrice()">
<option value="NIGHTS">1001 NIGHTS</option>
<option value="ADIDAS"selected>ADIDAS</option>
<option value="ALMOND OIL">ALMOND OIL</option>
<option value="BLUE LADY">BLUE LADY</option>
</select>
</td>
<td><input type='text' name='Quantity' value="1" size = "4" id='qty0'></td>
<td><input type='text' id="ex-gst0" name='Sale_Price' size="6" ></td>
<td><input type='text' id="ngstpct0" name='ngstpct' value="5.00" size="6"</td>
<td><input type='text' id="gstpct0" name='sgstpct' value="0.00" size="6" ></td>
<td><input type='text' id="igstpct0" name='igstpct' value="0.00" size="6" ></td>
<td><input type='text' id="gst0" name='tot_tax' size="6" ></td>
<td><input type='text' id="inc-gst0" size="6" name='total_price' value="0.00" ></td>
<td><input type='text' name="Commission" id="Commission" size="6" value="0.00"></td>
<td><input type='Date' id='SDate' size="8" name='SDate'></td>
<td><input type='hidden' name='InsertSwitch' Value='SalesInsert'></td>
<td>
<select id="VPriceSelect0" name='VSale_Price'>
<option value="120">120</option>
<option value="150">150</option>
<option value="250">250</option>
<option value="200">200</option>
<option value="250">250</option>
<option value="50">50</option>
<option value="15">15</option>
<option value="140">140</option>
</select></td>
</tr>
</table>
<table>
<tr>
<td>
<select name = "mode" id = "mode" onchange="addrow('customers')">
<option value="">Add More Records</option>
<option value="1">1 Record</option>
<option value="2">2 Records</option>
<option value="3">3 Records</option>
<option value="4">4 Records</option>
<option value="5">5 Records</option>
</select>
</td>
</tr>
</table>
<br></br>
<button class="button" type="submit">Add Sales</button>
<button class="button" type="reset">Reset</button>
</form>
最佳答案
试试这个,它应该可以工作。我刚刚删除了这段代码:
document.getElementById(name).click();
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
window.onload = function() {
hide();
};
function hide(){
var VSalePrice = document.getElementById('VPriceSelect0');
VSalePrice.style.visibility = 'hidden';
}
$(document).ready(function() {
var x=1;
$("#mode").on('change', function () {
var rows = parseInt(this.value);
var lastRow;
for (var i = x; i < rows+x; i++) {
lastRow = $('#customers tr').last().clone();
$('#customers tr').last().after(lastRow);
document.getElementById("V_Prod_Name0").id="V_Prod_Name"+i;
document.getElementById("VPriceSelect0").id="VPriceSelect"+i;
document.getElementById("qty0").id="qty"+i;
document.getElementById("ex-gst0").id="ex-gst"+i;
document.getElementById("ngstpct0").id="ngstpct"+i;
document.getElementById("gstpct0").id="gstpct"+i;
document.getElementById("igstpct0").id="igstpct"+i;
document.getElementById("gst0").id="gst"+i;
document.getElementById("inc-gst0").id="inc-gst"+i;
}
x=i;
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="jquery-3.3.1.min.js"></script>
<div class="tab">
<button class="tablinks"id='0' onclick="openCity(event, 'Sales')">Sales</button>
</div>
<div id="Sales" class="tabcontent">
<h3>Sales</h3>
<form name="ISales" action="MultiEntry.jsp">
<table id="customers">
<th>Product</th>
<th>Quantity</th> <th>Price</th><th>*CGST %</th><th>*SGST %</th><th>*IGST %</th><th>Total Tax</th><th>Total Price</th><th>Commission</th><th>Sale Date</th>
<tr>
<td>
<select id="V_Prod_Name0" name='Prod_Type' onChange="displaySalePrice()">
<option value="NIGHTS">1001 NIGHTS</option>
<option value="ADIDAS"selected>ADIDAS</option>
<option value="ALMOND OIL">ALMOND OIL</option>
<option value="BLUE LADY">BLUE LADY</option>
</select>
</td>
<td><input type='text' name='Quantity' value="1" size = "4" id='qty0'></td>
<td><input type='text' id="ex-gst0" name='Sale_Price' size="6" ></td>
<td><input type='text' id="ngstpct0" name='ngstpct' value="5.00" size="6"</td>
<td><input type='text' id="gstpct0" name='sgstpct' value="0.00" size="6" ></td>
<td><input type='text' id="igstpct0" name='igstpct' value="0.00" size="6" ></td>
<td><input type='text' id="gst0" name='tot_tax' size="6" ></td>
<td><input type='text' id="inc-gst0" size="6" name='total_price' value="0.00" ></td>
<td><input type='text' name="Commission" id="Commission" size="6" value="0.00"></td>
<td><input type='Date' id='SDate' size="8" name='SDate'></td>
<td><input type='hidden' name='InsertSwitch' Value='SalesInsert'></td>
<td> <select id="VPriceSelect0" name='VSale_Price'>
<option value="120">120</option>
<option value="150">150</option>
<option value="250">250</option>
<option value="200">200</option>
<option value="250">250</option>
<option value="50">50</option>
<option value="15">15</option>
<option value="140">140</option>
</select></td>
</tr>
</table>
<table>
<tr>
<td>
<select name = "mode" id = "mode" onchange="addrow('customers')">
<option value="">Add More Records</option>
<option value="1">1 Record</option>
<option value="2">2 Records</option>
<option value="3">3 Records</option>
<option value="4">4 Records</option>
<option value="5">5 Records</option>
</select>
</td>
</tr>
</table>
<br></br>
<button class="button" type="submit">Add Sales</button>
<button class="button" type="reset">Reset</button>
</form>
关于javascript - 将行动态添加到网页不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51578820/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!