Bazı php sunucu tarafı büyü ile this jquery code olarak değiştirin çalışılıyor:
$(document).ready(function() {
$('#text img').each(function(){
source = $(this).attr('src');
$(this).wrap($('<div class="caption '+ $(this).attr('class') + '"></div>')).removeAttr('class').removeAttr('height').removeAttr('width');
$(this).after('<p>' + $(this).attr('alt') + '</p>');
$(this).attr('src', '/system/tools/phpthumb/phpThumb.php?src=' + source + '&wl=200&hp=200&q=85&f=jpg');
});
});
Bütün yaptığı bu almaktır:
<img class="right" src="blah.jpg" alt="My caption" width="100" height="200" />
Ve ile değiştirir:
<div class="caption right">
<img src="/system/tools/phpthumb/phpThumb.php?src=blah.jpg&wl=200&hp=200&q=85&f=jpg" alt="My caption" />
<p>My caption</p>
</div>
Görüntüler <p>
's arasında tekstil format html bir blok dağılmış. Böyle bir şey:
<p>My paragraph text</p>
<img src="image.jpg" />
<p>Another paragraph text <img src="another_image.jpg" /> with more text</p>
<p>And so on</p>
Bu, sağ veya merkez sol ve küçük otomatik phpThumb kullanılarak oluşturulan görüntü dalgalanmaya olanak sağlar. Ben normal ifadeler kullanmak gerekir diye tahmin ediyorum. Ben php için yeni ve sadece arayüzü kodlama biliyorum. Bunu nasıl saldıracak?