1

如果我尝试将 html 图像源动态设置为维基百科图像,它会失败,但其他图像可以工作。

// does NOT work
jQuery( "#my_img" )
  .attr( "src" , 
         "http://en.wikipedia.org/wiki/File:Grad_Zovnek_Vischer.jpg" )

// works
jQuery( "#my_img" )
  .attr( "src" , 
         "http://dgroover.wikispaces.com/file/view/bill-gates-car.jpg" )

维基百科是否以某种方式阻止加载他们的图像?

4

1 回答 1

1

使用http://upload.wikimedia.org/wikipedia/commons/c/c8/Grad_Zovnek_Vischer.jpg. 您没有使用直接链接。

于 2013-06-28T20:53:35.650 回答