我有一个SELECT,我选择用户拥有多少辆汽车。之后,他/她将使用INPUT获得相同数量的DIV来描述哪些模型等。
如何使用SELECT?
克隆包含INPUT的DIV答案 0 :(得分:0)
这应该给你一般的想法...
$('select#cars').change(function() {
// Get number of cars chosen
var carsCount = $(this).val(),
// Get a reference to the first input group so we can clone it
carInput = $('#car-inputs div:first');
// Clone per number chosen
for (var i = 0; i < carsCount; i++) {
// Insert clone after original.
// IRL, you probably need to do some preprocessing on it first.
carInput.clone().insertAfter(carInput);
}
});
答案 1 :(得分:0)
也许克隆可以帮助你:http://api.jquery.com/clone/
希望这有帮助。