0

我有一个小提琴示例,说明我如何尝试根据下拉值选择克隆元素,但是它在 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>');

        }   
    }
});​
4

1 回答 1

0

IE 不支持 CSS :not 选择器,所以要完成它

改变这个

$('.questions_clonable:not(:first)').remove();

$('.questions_clonable:not(.questions_clonable:first)').remove();

演示

于 2012-11-19T10:39:37.580 回答