0

您好我有一个 jQuery 仅在浏览器可见区域中打开图片:

$(document).ready(function() {
  $('det_img_^').appear(function() {
    var a = $(this).find('a');
    $(this).html('<img src="' + a.attr('href') + '" title="' + a.text() + '" />');
  });
});

HTML 代码应为:

<img class=" " id="det_img_54837261"
src="http://site.com/image54837261.jpg" 
alt="" title="" border="0" height="190">

代码不起作用,需要修复 jQuery 部分才能使用此 HTML 代码。我尝试了一个原始示例http://code.google.com/p/jquery-appear/wiki/Examples它对我来说很好。JS文件全部包括在内。多谢你们!

4

1 回答 1

3

您是否尝试过#for ID 选择器?

$('#det_img_^').appear(function() {

或者

$('img#det_img_^').appear(function() {

于 2012-09-17T09:17:33.383 回答