0

大家,早安,

我与这个问题作斗争了 3 个小时,但我找不到赢得 XD 的方法拇指基于选择。

这很好用......真正的麻烦是我需要在模式中发布选择,这是我遵循 jcrop 网站上的说明但我无法退出的问题。

现在我已经解释了问题,是时候写一些代码了:D

var FileUploader_img_frontale = new qq.FileUploader({
    'element':document.getElementById("img_frontale"),
    'debug':false,
    'multiple':false,
    'action':'http://url.com/upload',
    'allowedExtensions':['jpg','png','jpeg','gif'],'sizeLimit':10485760,
    'onComplete':function(id, fileName, responseJSON){ 
          $('#pbar_img_frontale').css('display','none');
      $('#img-front-body').html('<img id="cropbox1" src="url.com/images/tmp/b444ac06613fc8d63795be9ad0beaf55011936ac/'+responseJSON.filename+'" style="max-width:400px;max-height:400px;"/>');

          function showCoordsFront(c){       $('#_opera_img_frontale').val(responseJSON.filename+'|'+c.x+'|'+c.y+'|'+c.x2+'|'+c.y2+'|0'); }
            $('#cropbox1').Jcrop({
                boxHeight: 400,
                boxWidth:400,
                trueSize: [responseJSON.width,responseJSON.height],
                allowResize: true,
                aspectRatio: 4/3,
                onChange: showCoordsFront,
                onSelect: showCoordsFront,
            },function(){ jcrop1 = this; });
            $('#_opera_img_frontale').val(responseJSON.filename);
            front_uploaded=1;
            $('#modal_img_front').modal('toggle');
         },'onProgress':function(id, fileName, loaded, total){ $('#pbar_img_frontale').css('display','block'); $('#bar_img_frontale').css('width',((loaded*100)/total)+'%'); },'params':{'PHPSESSID':'400659255ef857e043b5ab1651406f50','YII_CSRF_TOKEN':'c8248bc34b5371edf162292691dbcf23dc1e697a'}}); 

这是上传文件的jquery ajax,你可以看到我已经放了

 function(){ jcrop1 = this; }

需要抓取 obj,但是当我不通过 ajax 上传图像时它可以工作,但我不明白如何处理它导致释放按钮在 jquery 准备好时将 jcrop1 设置为未定义

var jcrop1;
$("#jcrop1-release").click(function(){
   jcrop1.setSelect([0,0,0,0]);
   jcrop1.release();
});

任何人都可以帮助我吗?

提前致谢

法比奥

4

1 回答 1

0

好的,伙计们,我已经解决了这个问题……问题出在脚本的框架管理中……它将放置多个 $(document).ready() 实例,因此一个var在一个中,而ajax在另一个中……所以解决方案是绕过document.ready并将全局变量放在外面,它完成了它的工作!!!

法比奥

于 2012-09-07T21:09:36.367 回答