我的动态构建的下拉列表立即打开和关闭,我没有机会选择任何选项,这里是构建列表的函数的代码如下:
function MoveItem(itemID) {
var selector = "#mov" + itemID;
var replaceValue = "<select class=ddl id=select" + itemID + ">" + $("input:text").map(function() { return '<option>' + $(this).val() || null; }).get().join("</option>");
replaceValue += "</select>";
$(selector).html(replaceValue);
}
知道为什么会这样吗?小伙子们。
答案 0 :(得分:0)
绑定它以改变事件。就像$("#yourid").bind("change", MoveItem(this));
一样,我认为它会做到这一点。 :)