0

我有一些处理程序来调整框的大小,我想根据选择的句柄移动框。在循环中实现这一点的最佳方法是什么

for (var j = 0; j < allhand.length; j++) {
    aaa[allhand[j]].style.visibility = 'inherit'; 

    aaa[allhand[j]].onmousedown = function(e) {

        document.onmousemove = function(e) {
            // if bottom handle it's been moved then just inc height

            // if right handle it's been moved then just inc width... ?????

            // etc...
            return false;
        };
        document.onmouseup = function(e) {
            stop = false;
            return false;
        };
        return false;
    };
}
4

1 回答 1

0

没有快速的答案,但在 Flex 中,我使用Rogue Development 的对象句柄很幸运。也许得到代码,看看?

于 2009-02-03T23:01:31.743 回答