附加时选择一个ID来选择菜单

时间:2015-08-18 08:42:23

标签: javascript jquery

我有这个

<script id="produstTypes" type="text/template">
   <select name="selectMenuProducts">
     <option value="ch0021">Chair</option>
   </select>
</script>

我多次使用它来创建相同的选择菜单。

var product.append(
    $('<label>Products</label>')
);

product.append($($('#produstTypes').html()).change(function(){ //how do I give an ID to "selectMenuProducts"?
    //do stuff
});

如何在追加()时向name="selectMenuProducts"提供ID?

0 个答案:

没有答案