如果我尝试将 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" )
维基百科是否以某种方式阻止加载他们的图像?