1

要从其他网站剪辑图像,我使用了 Bookmarklet。我在显示图像和选择图像方面取得了成功,但是在将其存储在我的网络服务器上时,我收到了跨域错误。错误如下:

Uncaught TypeError: Object function ( selector, context ) {// jQuery 对象实际上只是 init 构造函数 'enhanced' return new jQuery.fn.init( selector, context, rootjQuery );} has no method 'closePopupMenu'

提前致谢

4

1 回答 1

0

你可以使用这样的东西:

// Obtain HTML from a website
$.get("http://www.google.com", function(data) {
    // Extract every img tag from the complete HTML
    $('img', data).each(function() {
        // Extract the src attribute from every IMG
        alert($(this).attr('src'));
    });
}).fail(function(xhr, textStatus, errorThrown) {   
    alert("error: "+textStatus); 
});
于 2013-06-27T07:57:00.547 回答