JQuery içinde appendTo () kullanarak o ... çözüm kaldırır hemen sonra eleman ekler?

0 Cevap php

Bu beklediğim gibi aşağıda appendTo () fonksiyonu çalışmıyor uyguladık nasıl muhtemelen bir noob soru ama. Temelde, bu unsuru ekledi ve anında tekrar kaldırıldı. Bu yanıp bulunuyor ve bunu şeyler özledim.

Bu oluyor olabilir neden herkes anlayabilir?

Fonksiyon çağırıldığında İşte burada:

<?php foreach ($words as $word) {
echo    "<li class='$word[0]'><a href='' onclick='add_to();'>$word</a></li>";
} 

Ve burada hemen hemen jQuery öğretici sitesinden alınan fonksiyonu kendisi (bulunuyor:

function add_to () {
        $('<h1>Test</h1>').appendTo('.ad_text');
    }

Benim ilk düşünce add_to () fonksiyonu dışında mendil, hangi () document.ready çağıran bir komut dosyası denir ki? Bu script) (add_to üzerindedir ve bu:

$(document).ready(function(){

        //when a link in the filters div is clicked...
        $('#filters a').click(function(e){

            //prevent the default behaviour of the link
            e.preventDefault();

            //get the id of the clicked link(which is equal to classes of our content
            var filter = $(this).attr('id');

            //show all the list items(this is needed to get the hidden ones shown)
            $('#content ul li').show();

            /*using the :not attribute and the filter class in it we are selecting
            only the list items that don't have that class and hide them '*/
            $('#content ul li:not(.' + filter + ')').hide();

        });

    });

Muhtemelen orada bir kod çelişkili biraz? Maalesef - Javascript yeni ve hızla birlikte bir şeyler Arnavut kaldırımı çalışıyor.

TIA, Andy

0 Cevap