How do I remove jcrop?

后端 未结 3 751
爱一瞬间的悲伤
爱一瞬间的悲伤 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:53

    Edit: Looks like you need to maintain a reference to the api when you add jcrop to an image.

    // assign jcrop to jcrop_api
    var jcrop_api = $.Jcrop('#imgThumbnailer', {
        onChange: statusCrop,
        onSelect: statusCrop,
        bgColor: 'black',
        bgOpacity: .3
    });
    
    
    // when you want to remove it
    jcrop_api.destroy();
    

提交回复
热议问题