Bir captcha yenilemek için jQuery en ajax arama kullanın

0 Cevap php

Diyebilirim ki ben, bir jpeg başlığı ile, kendi php Captcha senaryoyu yazdı

<img src="captcha.php">

hangi oturum değişkeni içine captcha değerini saklayarak çalışır. Kullanıcı bunu okuyamıyor zaman, ben yenilenebilir olmak istiyorum.

Ben ilk çalıştı

$("#refresh").click(function() {
    $("#captcha").attr("src","captcha.php");
});

but of course that doesn't make sense, and I need to make an ajax call instead. How would you all recommend I do this?

P.S. Ayrıca güvenilir

$.ajax({
    url: "captcha.php",
    success: function(result) {
        $("#captcha").attr("src",result);
    }
});

0 Cevap