简体   繁体   中英

problems with .change(function() javascript in ie<9

i have problems with this script in ie<9. what problems with my script? thanks

ie7,8 error: SCRIPT87: Invalid argument. jquery.js, line 3 character 32369

in jquery.js: function(a){this.parentNode.insertBefore(a,this.nextSibling)};

            $(":radio[name=variant]").change(function() {
            var vat = $(this).val()
                /*$(this).parent().parent().find('td.cost').css("display", "none");
                $("#costVariants_"+val).css("display", "block");
                */
            $(this).parent().parent().parent().find('label.variant_color').css("border", "none");
            $(this).parent().parent().parent().find('span.price').css("display", "none");
            $("#color_"+vat).css("border", "1px solid white") ;
            /*$("#price_"+vat).css("display", "block") ;*/
            $("#price_"+vat).insertAfter($(this).parent().parent().find('.main_image'));
            $(this).parent().find('.main_image').html($(this).parent().find('span.price').html());
                $(this).parent().parent().parent().parent().parent().parent().parent().find('.main_image').html($(this).parent().parent().find('span.price').html());
            });

and i'm sorry, this is my first post here. thanks a lot

thanks, i read some docs, and now i'm try allways avoid .parent. But in general my problem was in hiden . ie<9 can't select label (the label of input was a color block in my project), when the input is hiden (display: none;)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM