我有一个小提琴示例,说明我如何尝试根据下拉值选择克隆元素,但是它在 IE7 和 8 中不起作用(显示“null”而不是克隆的元素)。谁能看到如何纠正这个?非常感谢。JS代码如下:
// Dropdown select
$('#quantity').live("change", function(){
$('.questions_clonable:not(:first)').remove();
// Get value of selection
var num = $(this).val();
var cloned_el = $('.questions_clonable').clone();
if (num > 1)
{
for (var i = 1; i < num; i++)
{
// Assign cloned block to new var
var new_block = cloned_el;
// Bit of a workaround needed to clone properly, reiterating class name
$('.multiple_questions_container').append('<span class="questions_clonable hidden">'+new_block.html()+'</span>');
}
}
});