我创建了一个包含静态数据的页面。我在一列中有一个输入框。然后我有一个函数将我在此输入框中输入的值乘以另一列的数字。结果是有效的,如下所示:
h1{
font-size: 30px;
color: #fff;
text-transform: uppercase;
font-weight: 300;
text-align: center;
margin-bottom: 15px;
}
table{
width:100%;
table-layout: fixed;
}
.tbl-header{
background-color: rgba(255,255,255,0.3);
}
.tbl-content{
height:300px;
overflow-x:auto;
margin-top: 0px;
}
th{
padding: 20px 15px;
text-align: left;
font-weight: 500;
font-size: 12px;
color: #fff;
text-transform: uppercase;
}
td{
padding: 10px;
text-align: left;
vertical-align:middle;
font-weight: 300;
font-size: 12px;
color: #fff;
}
tr:nth-child(odd) td {
background:#2cc3ce;
color:#0d3852;
}
/* demo styles */
@import url(http://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
body{
background: #0d3852;
font-family: 'Roboto', sans-serif;
}
section{
margin: 50px;
}
input {
max-width:50px;
}
*,
*:after,
*::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.ac-custom {
padding: 0 1em;
max-width: 900px;
margin: 0 auto;
}
.ac-custom h2 {
font-size: 1em;
font-weight: 300;
padding: 0 0 0.5em;
margin: 0 0 30px;
color:#0d3852;
}
.ac-custom ul,
.ac-custom ol {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
}
.ac-custom li {
margin: 0 auto;
padding: 0.5em 0;
position: relative;
}
.ac-custom label {
display: inline-block;
position: relative;
font-size: 1em;
padding: 0 0 0 80px;
vertical-align: top;
color: #0d3852;
cursor: pointer;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
width: 20px;
height: 20px;
top: 50%;
left: 0;
margin-top: -12px;
position: absolute;
cursor: pointer;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
opacity: 0;
-webkit-appearance: none;
display: inline-block;
vertical-align: middle;
z-index: 100;
}
.ac-custom label::before {
content: '';
border: 1px solid #0d3852;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.ac-radio label::before {
border-radius: 50%;
}
.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
color: #fff;
}
.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
opacity: 0.8;
}
/* General SVG and path styles */
.ac-custom svg {
position: absolute;
width: 20px;
height: 20px;
top: 50%;
margin-top: -12px;
left: 0px;
pointer-events: none;
}
.ac-custom svg path {
stroke: #0d3852;
stroke-width: 13px;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
/* Specific input, SVG and path styles */
/* Circle */
.ac-circle input[type="checkbox"],
.ac-circle input[type="radio"],
.ac-circle label::before {
width: 30px;
height: 30px;
margin-top: -15px;
left: 10px;
position: absolute;
}
.ac-circle label::before {
background-color: #fff;
border: none;
}
.ac-circle svg {
width: 70px;
height: 70px;
margin-top: -35px;
left: -10px;
}
.ac-circle svg path {
stroke-width: 5px;
}
/* Box Fill */
.ac-boxfill svg path {
stroke-width: 8px;
}
/* Swirl */
.ac-swirl svg path {
stroke-width: 8px;
}
/* List */
.ac-list ol {
list-style: decimal;
list-style-position: inside;
}
.ac-list ol li {
font-size: 2em;
padding: 1em 1em 0 2em;
text-indent: -40px;
}
.ac-list ol li label {
font-size: 0.5em;
text-indent: 0;
padding-left: 30px;
}
.ac-list label::before {
display: none;
}
.ac-list svg {
width: 100%;
height: 80px;
left: 0;
top: 1.2em;
margin-top: 0px;
}
.ac-list svg path {
stroke-width: 4px;
}
.row {
margin-left: -15px;
margin-right: -15px;
margin-top:0;
}
.col-sm-4 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
}
@media (min-width: 768px) {
.col-sm-4 {
float: left;
}
.col-sm-4 {
width: 33.33333333%;
}
.filter-columns {
background-color:#2cc3ce;
}
.filter-columns-alt {
background-color:#78D9E0;
min-height:256px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<thead>
<tr id="ProductID" class="first">
<th>NUMBER 1</th>
<th>NUMBER 2</th>
<th>RESULT</th>
</tr>
</thead>
<tbody>
<tr class="txtMult">
<td class="stake"><input class="val1"/></td>
<td class="odds">2.2</td>
<td class="profit"><span class="multTotal">0.00</span></td>
</tr>
<tr class="txtMult">
<td class="stake"><input class="val1"/></td>
<td class="odds">2.2</td>
<td class="profit"><span class="multTotal">0.00</span></td>
</tr>
</tbody>
</table>
$.getJSON(
'http://apolosiskos.co.uk/TEB/MOCK_DATA.json',
function(data){
var tr;
$.each (data, function (key, val) {
tr = $('<tr/>');
tr.append('<td class="stake"><input class="val1"/>' + '</td>');
tr.append('<td class="odds">' + val.id + '</td>');
tr.append('<td class="profit"><span class="multTotal">' +'0.00'+ '</span></td>');
$('table').append(tr);
});
});
$(function() {
$("input").keyup(multInputs);
function multInputs() {
var mult = 0;
$("tr").each(function () {
var $val1 = $('.val1', this).val();
var $val2 = $('.odds', this).text();
var $total = ($val1 * 1) * $val2 - $val1
$('.multTotal',this).text($total.toPrecision(3));
mult += $total;
});
$("#grandTotal").text(mult);
}
});
现在我正在尝试从JSON文件(url)中检索表数据,然后将单元格值相乘。我在下面创建了一个片段但是JSON数据在这里没有加载,可能是因为url是https。所以请检查LINK。您也可以轻松查看代码段中的代码。
h1{
font-size: 30px;
color: #fff;
text-transform: uppercase;
font-weight: 300;
text-align: center;
margin-bottom: 15px;
}
table{
width:100%;
table-layout: fixed;
}
.tbl-header{
background-color: rgba(255,255,255,0.3);
}
.tbl-content{
height:300px;
overflow-x:auto;
margin-top: 0px;
}
th{
padding: 20px 15px;
text-align: left;
font-weight: 500;
font-size: 12px;
color: #fff;
text-transform: uppercase;
}
td{
padding: 10px;
text-align: left;
vertical-align:middle;
font-weight: 300;
font-size: 12px;
color: #fff;
}
tr:nth-child(odd) td {
background:#2cc3ce;
color:#0d3852;
}
/* demo styles */
@import url(http://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
body{
background: #0d3852;
font-family: 'Roboto', sans-serif;
}
section{
margin: 50px;
}
input {
max-width:50px;
}
*,
*:after,
*::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.ac-custom {
padding: 0 1em;
max-width: 900px;
margin: 0 auto;
}
.ac-custom h2 {
font-size: 1em;
font-weight: 300;
padding: 0 0 0.5em;
margin: 0 0 30px;
color:#0d3852;
}
.ac-custom ul,
.ac-custom ol {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
}
.ac-custom li {
margin: 0 auto;
padding: 0.5em 0;
position: relative;
}
.ac-custom label {
display: inline-block;
position: relative;
font-size: 1em;
padding: 0 0 0 80px;
vertical-align: top;
color: #0d3852;
cursor: pointer;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
width: 20px;
height: 20px;
top: 50%;
left: 0;
margin-top: -12px;
position: absolute;
cursor: pointer;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
opacity: 0;
-webkit-appearance: none;
display: inline-block;
vertical-align: middle;
z-index: 100;
}
.ac-custom label::before {
content: '';
border: 1px solid #0d3852;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.ac-radio label::before {
border-radius: 50%;
}
.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
color: #fff;
}
.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
opacity: 0.8;
}
/* General SVG and path styles */
.ac-custom svg {
position: absolute;
width: 20px;
height: 20px;
top: 50%;
margin-top: -12px;
left: 0px;
pointer-events: none;
}
.ac-custom svg path {
stroke: #0d3852;
stroke-width: 13px;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
/* Specific input, SVG and path styles */
/* Circle */
.ac-circle input[type="checkbox"],
.ac-circle input[type="radio"],
.ac-circle label::before {
width: 30px;
height: 30px;
margin-top: -15px;
left: 10px;
position: absolute;
}
.ac-circle label::before {
background-color: #fff;
border: none;
}
.ac-circle svg {
width: 70px;
height: 70px;
margin-top: -35px;
left: -10px;
}
.ac-circle svg path {
stroke-width: 5px;
}
/* Box Fill */
.ac-boxfill svg path {
stroke-width: 8px;
}
/* Swirl */
.ac-swirl svg path {
stroke-width: 8px;
}
/* List */
.ac-list ol {
list-style: decimal;
list-style-position: inside;
}
.ac-list ol li {
font-size: 2em;
padding: 1em 1em 0 2em;
text-indent: -40px;
}
.ac-list ol li label {
font-size: 0.5em;
text-indent: 0;
padding-left: 30px;
}
.ac-list label::before {
display: none;
}
.ac-list svg {
width: 100%;
height: 80px;
left: 0;
top: 1.2em;
margin-top: 0px;
}
.ac-list svg path {
stroke-width: 4px;
}
.row {
margin-left: -15px;
margin-right: -15px;
margin-top:0;
}
.col-sm-4 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
}
@media (min-width: 768px) {
.col-sm-4 {
float: left;
}
.col-sm-4 {
width: 33.33333333%;
}
.filter-columns {
background-color:#2cc3ce;
}
.filter-columns-alt {
background-color:#78D9E0;
min-height:256px;
}
<meta http-equiv="Access-Control-Allow-Origin" content="*"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr id="ProductID" class="first">
<th>A1</th>
<th>A2</th>
<th>A3</th>
</tr>
</table>
{{1}}
答案 0 :(得分:2)
您正在添加具有相同ID(&#34; Memory1&#34;)的多个元素(trs),这些元素无效。取决于过滤器的&#34;脚本和乘法函数&#34;实际上,可能是原因。
编辑:根据您提供的链接,这就是发生的事情:
js / multiply_cells脚本说&#34;将事件附加到所有匹配的INPUT&#34;
AJAX请求正在更新页面,添加INPUT
你不希望那些事情按照这个顺序发生。在将INPUT添加到DOM之后调用第一个代码,或者查看event delegation。
前者是位更简单;尝试这样的事情:
$.getJSON('http://apolosiskos.co.uk/TEB/MOCK_DATA.json', function(data) {
var tr;
$.each (data, function (key, val) {
tr = $('<tr/>');
tr.append('<td class="stake"><input class="val1"/>' + '</td>');
tr.append('<td class="odds">' + val.id + '</td>');
tr.append('<td class="profit"><span class="multTotal">' +'0.00'+ '</span></td>');
$('table').append(tr);
});
$("input").keyup(multInputs);
});
function multInputs() {
var mult = 0;
$("tr").each(function () {
var $val1 = $('.val1', this).val();
var $val2 = $('.odds', this).text();
var $total = ($val1 * 1) * $val2 - $val1
$('.multTotal', this).text($total.toPrecision(3));
mult += $total;
});
$("#grandTotal").text(mult);
}