这是我试图在加载时动态放置img文件的src的HTML。
<figure>
<img src="" class="img-rounded" width="220" height="221">
<figcaption>Ubing</figcaption>
</figure>
<figure>
<img src="" class="img-rounded" width="220" height="221">
<figcaption>Lalaki</figcaption>
</figure>
<figure>
<img src="" class="img-rounded" width="220" height="221">
<figcaption>Babai</figcaption>
</figure>
这是Jquery。我在这里正确选择了img吗? jquery在工作时是否会更新所有这些内容?
$(document).load(function() {
var ex = $('figcaption').text();
$.post('../php/fetchLabel.php' , {input:ex} , function(data){
if(data== false){
$('this').prev().attr('alt','No Data In database');
}
else{
$('this').prev().attr('src', '../'+data);
}
})})
有人请帮助我!
答案 0 :(得分:0)
set /P