PHP ile dinamik jQuery kapat

1 Cevap php

Yani dinamik bir MySQL veritabanı tarafından oluşturulan içerik ve ben php ile çekin. Ne demek istediğimi göstermek için bu örnek bak.

Goto http://minecraftadmins.net/browse/ See Skin Preview? I want to make it so when you click it, it opens a jQuery popup with content generated from an external source (AJAX). I know how to make a popup. But it doesnt work when dynamic.

Herhangi bir fikir?

1 Cevap

Gibi bir şey yapabilirsiniz:

<script type="text/javascript">
$(document).ready(function(){
    $('#skin-preview-421').click(function() {
        $.post($('#skin-preview-421').attr('href'), function(resp){
            $("#dlg-skin-preview").html(resp).dialog('open');
        }, 'html');
        return false;
    });
}); 
</script>

<a id="skin-preview-421" class="ex2trigger" href="get_skin_preview.php?id=421">Skin Preview</a>

<div id="dlg-skin-preview" style="display:none;"></div>

Daha sonra bir döngü tıklamaları atayarak optimize olabilir.