我正在开发一个新系统,并且遇到了jquery + ajax,并且正常工作与页面上发生的其他事情一起正常工作。
基本上该页面是提交报价,在页面上您可以根据需要添加任意数量的报价项目。当有人点击新项目时,它运行以下代码,获取隐藏元素的值并在所有新元素ID中使用它,以使它们保持唯一。
新产品代码:
function addFormField() {
var id = document.getElementById("field_id").value;
$("#products").append("
<table width='600' cellpadding='5' cellspacing='0' class='Add_Products' id='row" + id + "'>
<td width='250' class='left'>
<label>Select Product Category</label>
</td>
<td class='right' >
<label><select name='ProductCategory' id='ProductCategory'>
<?php foreach($categories as $key=>$category){
echo "<option value=".$key.">".$category."</option>";
}
?>
</select>
</label>
</td>
</tr>
<tr>
<td width='250' class='left'>
<label>Select Product Template</label>
</td>
<td class='right' >
<label>
<select name='data[QuoteItem][" + id + "][product_id]' id='QuoteItem" + id + "product_id'></select>
</label>
</td>
</tr>
<tr >
<td class='left'>Name</td>
<td class='right'>
<label>
<input name='data[QuoteItem][" + id + "][name]' type='text' id='QuoteItem" + id + "name' size='50' />
</label>
</td>
</tr>
<tr >
<td class='left'>
Price (ex GST)
</td>
<td class='right'>
<input type='text' name='data[QuoteItem][" + id + "][price]' id='QuoteItem" + id + "price' onchange='totalProductPrice();' class='quote-item-price' />
</td>
</tr>
<tr>
<td class='left'>
Description
</td>
<td class='right'>
<label>
<textarea name='data[QuoteItem][" + id + "][description]' cols='38' rows='5' id='QuoteItem" + id + "description'>
</textarea>
</label>
</td>
</tr>
<tr>
<td>
<a href='#' onClick='removeFormField(\"#row" + id + "\"); return false;'>Remove</a>
</td>
</tr>
</table>
");
$('#row' + id).highlightFade({
speed:1000
});
id = (id - 1) + 2;
document.getElementById("field_id").value = id;
}
接下来我要做的是使用jQuery设置一个AJAX查询,当选择它时会请求相应的数据并填充产品框但我无法弄清楚如何获取该组元素的ID以确保正确将填充下拉框,并确保检测到正确的框中的onchange。
我尝试了一些方法,例如将ID添加到下拉框的ID中,但是onchagne不起作用。
我的jquery ajax代码在下面,它会检索产品列表
$(function(){
$("select#ProductCategory").change(function(){
var url = "productList/" + $(this).val() + "";
var id = $("select#ProductCategory").attr('name');
$.getJSON(url,{id: $(this).val(), ajax: 'true'}, function(j){
var options = '';
options += '<option value="0">None</option>';
$.each(j, function(key, value){
options += '<option value="' + key + '">' + value + '</option>';
})
$("select#QuoteItem" + id + "product_id").html(options);
})
})
})
因为我的生活无法弄清楚这一点,所以如果有人能够对最好的方法有所了解那就太棒了。
如果我需要进一步澄清,请告诉我,因为我正在努力解释它。
提前致谢
答案 0 :(得分:2)
我的项目中有类似的功能。我是怎么做到的:
我有一个以0开头的全局变量,并且每次添加新字段时都会增加:
var num = 0;
jQuery(function($){
$("#add_field").click(function(){
num++;
//here add new field, with id contains 'num'
});
});
为了使调试更容易,你应该从一个简单的元素开始,测试它以便它没有bug,并为它添加更多的字段。
要通过AJAX提交表单,请使用jQuery form plugins,这样您就不需要在提交表单的ajax代码中手动添加所有字段。