How do I remove jcrop?

后端 未结 3 758
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-28 18:04

how do i un-jcrop an image?

I\'m adding jcrop with a;

$(\'#imgThumbnailer\').Jcrop({
    onChange: statusCrop,
    onSelect: statusCrop,
    bgColor:         


        
3条回答
  •  我在风中等你
    2020-12-28 18:36

    I was wondering the same thing and after reading the source have found a simple solution that works in v0.9.8 (the other posted answers only work with the dev version currently). If you initiate Jcrop like this:

    $('#imgThumbnailer').Jcrop({
        onChange: statusCrop,
        onSelect: statusCrop,
        bgColor: 'black',
        bgOpacity: .3
    });
    

    then you can get access to the api and destroy Jcrop via:

    JcropAPI = $('#imgThumbnailer').data('Jcrop');
    JcropAPI.destroy();
    

    It's probably too late for the asker but hopefully this is helpful to someone who stumbles upon this page from google!

提交回复
热议问题