背景
在我目前的项目中,我使用JQuery UI实现了产品和购物篮。这是我第一次尝试实现JQuery UI,但我对JQuery API足够了。该商店将使用c#驱动.Net。我在开发方面遇到了这个问题,我已经搜索了网络的每个角落并转向了JQuery API的每一页。我只是无法弄清楚代码中的逻辑有什么问题。
我的问题
某些产品还有其他选项需要在发送到购物篮之前进行选择。很公平,所以我实现了一个对话框表单来获取用户所需的信息(JQuery Dialod Modal)并更新每个产品中的表格。程序中的所有内容都有效,直到我用用户输入更新相关产品。每次更新产品时,只有第一个产品才能获得详细信息。我希望我已经为你们清楚地解释了我的问题......我还在下面包含了一个基本的小提琴,模拟了同样的问题。我
如果您点击信息图标并点击添加处理首选项并填写信息,请再次检查第一个产品,您将看到我的意思。所有东西都只印在第一个产品上。必须有办法写入每个产品。
使用HTML无序列表构建产品。所以一个示例产品看起来像这样;
HTML
<li class="ui-widget-content ui-corner-tr" id="100400">
<h5 class="ui-widget-header">Option 1</h5>
<font class="repairDetails" alt="Repair Details" style="">DETAIL
<font style="color:Red; text-decoration:blink; font-size:1em; bottom:10;">Please view product details for <u>handle preferences</u> before sellecting this option.</font>
</font><br />
<label class="price">£00.00</label>
<a class="ui-icon ui-icon-info dialog_but" title="View Product Detail" href="#" style="">View Product Detail</a>
<div class="dialog_content" title="" style="">
<table style="border:none !important;">
<thead>
</thead>
<tr>
<td style="border:none !important; width:15px; height:13px !important;"><span class="ui-icon ui-icon-circle-plus"></span></td>
<td style="text-align:left;">
DETAIL
</td>
</tr>
<tr>
<td style="border:none !important; width:15px; height:13px !important;"><span class="ui-icon ui-icon-circle-plus"></span></td>
<td style="text-align:left;">
DETAIL
</td>
</tr>
<tr>
<td style="border:none !important; width:15px; height:13px !important;"><span class="ui-icon ui-icon-circle-plus"></span></td>
<td style="text-align:left;">
DETAIL
</td>
</tr>
<tr>
<td style="border:none !important; width:15px; height:13px !important;"><span class="ui-icon ui-icon-circle-plus"></span></td>
<td style="text-align:left;">
DETAIL
</td>
</tr>
<table id="hDetails" class="ui-widget ui-widget-content">
<button id="handle-pre" class="handle-pre">Add Handle Preferance</button>
<thead>
<tr class="ui-widget-header ">
Handle Preferences
<th>Handle Shape (Pro, Oval, Round)</th><br />
<th>Size - SSH/SH/LH/H etc.</th>
<th>Specify handle type if sellected <br />Value package re-handle</th>
</tr>
</thead>
<tbody id="addHere" class="addHere">
</tbody>
</table>
</table>
</div>
<a href="" title="Add to chart" class="ui-icon ui-icon-cart chart_but">Add to chart</a>
<div style="display:none;">
</div>
</li>
JQUERY
//Modal window to ask and submit additional user details
$(function () {
var hShape = $("#hShape"),
hSize = $("#hSize"),
hType = $("#hType"),
allFields = $([]).add(hShape).add(hSize).add(hType),
tips = $(".validateTips");
function updateTips(t) {
tips
.text(t)
.addClass("ui-state-highlight");
setTimeout(function () {
tips.removeClass("ui-state-highlight", 1500);
}, 500);
}
function checkLength(o, n, min) {
//check handle shape. Make sure the user only inputs relevent options
if (n == "Handle Shape") {
if (o.val() != "Pro" && o.val() != "Oval" && o.val() != "Round") {
o.addClass("ui-state-error");
updateTips(n + " can only have values of 'Pro', 'Oval' and 'Round' " + ".");
return false;
}
}
//check lenght
if (o.val().length < min) {
o.addClass("ui-state-error");
updateTips(n + " cannot be blank" + ".");
return false;
} else {
return true;
}
}
$("#dialog-form").dialog({
autoOpen: false,
height: 400,
width: 400,
modal: true,
show: 'fade',
hide: 'fade',
buttons: {
"Add Details": function () {
var bValid = true;
allFields.removeClass("ui-state-error");
bValid = bValid && checkLength(hShape, "Handle Shape", 3);
bValid = bValid && checkLength(hSize, "Handle Size", 1);
bValid = bValid && checkLength(hType, "Handle Type", 3);
if (bValid) {
$('#addHere').each(function () {
$(this).append("<tr>" +
"<td>" + hShape.val() + "</td>" +
"<td>" + hSize.val() + "</td>" +
"<td>" + hType.val() + "</td>" +
"</tr>")
});
$(this).dialog("close");
}
},
Cancel: function () {
$(this).dialog("close");
}
},
close: function () {
allFields.val("").removeClass("ui-state-error");
}
});
$("#handle-pre").live("click", function () {
$("#dialog-form").dialog("open");
});
});
特别是在我尝试更新相关表的代码中;
if (bValid) {
$('#addHere').each(function () {
$(this).append("<tr>" +
"<td>" + hShape.val() + "</td>" +
"<td>" + hSize.val() + "</td>" +
"<td>" + hType.val() + "</td>" +
"</tr>")
});
};
如果我的解释不充分,请查看小提琴。 Here is the fiddle...
答案 0 :(得分:0)
您正在按ID选择元素,jQuery的id选择器只会找到与给定id匹配的第一个元素。在您的情况下,您可以指定要查找元素的上下文
// find the main dialog element
var $el = $(this).closest('.ui-dialog');
if (bValid) {
// set the context to the visible div in the background - which is a previous sibling to current dialog
$('#addHere', $el.prevAll('.ui-dialog:visible')).append("<tr>" + "<td>" + hShape.val() + "</td>" + "<td>" + hSize.val() + "</td>" + "<td>" + hType.val() + "</td>" + "</tr>")
}
使用$('#addHere', $el.prevAll('.ui-dialog:visible'))
设置上下文以查找addHere元素。在检查dom之后,是之前可见的ui对话
同样ID
应该是唯一的 - 所以使用类可能会更好,尽管如果使用类,它将是相同的解决方案。