有一种真正的心灵痛苦。
我有一个 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 脚本!?
谢谢:)
漂亮的