我有这个
<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?