0

我遇到了追加问题。

我使用追加添加一个 div。

chrome 浏览器正在运行,但不在 Firefox 中。

以下代码附加(格式化代码):

var $j = jQuery.noConflict();
$j(window).load(function() {
$j('#slider').nivoSlider();

$j("ul.dropdown li").hover(function(){

    $j(this).addClass("hover");
    $j('ul:first',this).css('visibility', 'visible');

}, function(){

    $j(this).removeClass("hover");
    $j('ul:first',this).css('visibility', 'hidden');

});

$j("ul.dropdown li ul li:has(ul)").find("a:first").append(" » ");

$checkParent = $j('.menu-treatment .wpcf7-checkbox');
$checkParent.find('span').mouseover(function() {
    $j(this).find('.tooltip').stop(true, true).fadeIn();
    $j(this).find('.tooltip2').stop(true, true).fadeIn();

    $j(this).mouseleave(function(){
        $j(this).find('.tooltip').stop(true, true).fadeOut();
        $j(this).find('.tooltip2').stop(true, true).fadeOut();

    })
})
$checkParent.find('.wpcf7-list-item:first-child').append('<div class="tooltip" style="display: none;">Tune your body, mind, soul, and emotion with the ancient Tibetan Singing Bowl <div class="panah-kiri"></div></div>');

});
4

0 回答 0