我需要一个单选按钮来更改下拉菜单,如果它工作得最多,只是不确定一些事情。我想将 CreativeID 作为 ID,将 CreativeName 作为名称。这是我的 AJAX:
$('input[name=creativeType]').change(function(){
$.ajax({
url: '/app/components/MailingsReport.cfc',
//POST method is used
type: "POST",
//pass the data
data: {
method: "getCreative",
CreativeType: $('input[name=creativeType]:checked').val(),
datasource: "shopping_cart"
},
dataType: "xml",
//contentType: "application/text; charset=utf-8",
success: function(xml){
$('#creative option').remove();
$(xml).find('number').each(function()
{
$("#creative").append('<option value="' + $(this).text() + '">' + $(this).find('CREATIVENAME').text() + '<\/option>');
});
}
});
这是我的退货数据:
<wddxPacket version='1.0'><header/><data><recordset rowCount='3' fieldNames='CREATIVEID,CREATIVENAME' type='coldfusion.sql.QueryTable'><field name='CREATIVEID'><number>52.0</number><number>65.0</number><number>77.0</number></field><field name='CREATIVENAME'><string>Product One</string><string>Product Two</string><string>Product Three</string></field></recordset></data></wddxPacket>
我的问题:我只是不知道如何填充下拉列表,所以 ID 是值并且产品名称显示在选项标签之间。对此的任何帮助将不胜感激!