0

有一种真正的心灵痛苦。

我有一个 php 图像上传器,它很好,并且对文件进行了排序,并且 jquery ajax 将图像返回到一个经过修改的 html div 中,其中 div 设置如下:

#crop-holder {
  width:80px;
  height:80px;
  margin:10px 10px 20px 10px;
  border:1px #c0c0c0 solid;
  overflow:hidden;
  cursor:move;
 }

图像查看正常,我正在使用 jquery scrollview 插件:http ://code.google.com/p/jquery-scrollview/

我尝试在插件中添加几行来存储 scrollTop 和 Left 的变量,然后在我的页面中用 x 和 y 替换两个隐藏的输入值。然后在 div 中返回的 ajax html 上,我试图单击按钮(例如)检索两个隐藏输入的值....

这是我添加到插件中的内容(我不是 js 专家!):

.mouseout(function(){ 
 var _m = this.m;
    var lasty = _m.scrollTop();
   getElementById("ycord").value = lasty;
   var lastx = _m.scrollLeft();
  getElementById("xcord").value = lastx;
   self.stopgrab();
             })

还是没有运气!!

我怎样才能获得 scrollTop 和 scrollLeft 并成功准备它们以发送到另一个 php 脚本!?

谢谢:)

漂亮的

4

1 回答 1

0

我已经在http://jquery-scrollview.googlecode.com/svn/trunk/sample.html上尝试了这个例子,但只在 safari 中,因为 firefox 根本不会加载它,而且它没有工作。

如果我理解正确,您想使用这些数据来裁剪图像吗?

如果是这样,我建议使用完全其他的 jquery 插件:Jcrop

这个插件特别适合这种工作,在我看来更好地记录为滚动视图。

于 2010-04-21T21:20:24.387 回答