Ben sanal bir oturma odası etrafında hareket eden ürünleri içeren bir proje üzerinde çalışıyorum, ben şu işlevi var
<a href="javascript:void(0)" onclick="sendxandy( <? echo $_SESSION['numberOfProducts']; ?> )">Save Positions of Products</a>
aşağıdaki gibi ve daha sonra fonksiyonu:
` function sendxandy(productAmount) { if (productAmount == 1) { location.href="homeview.php?x=" + dd.elements.image1.x + "&y=" + dd.elements.image1.y; } if (productAmount == 2) { location.href="homeview.php?x=" + dd.elements.image1.x + "&y=" + dd.elements.image1.y + "&xtwo= " + dd.elements.image2.x + "&ytwo=" + dd.elements.image2.y; } if (productAmount == 3) { location.href="homeview.php?x=" + dd.elements.image1.x + "&y=" + dd.elements.image1.y + "&xtwo= " + dd.elements.image2.x + "&ytwo=" + dd.elements.image2.y + "&xthree= " + dd.elements.image3.x + "&ythree=" + dd.elements.image3.y; } if (productAmount == 4) { location.href="homeview.php?x=" + dd.elements.image1.x + "&y=" + dd.elements.image1.y + "&xtwo= " + dd.elements.image2.x + "&ytwo=" + dd.elements.image2.y + "&xthree= " + dd.elements.image3.x + "&ythree=" + dd.elements.image3.y + "&xfour= " + dd.elements.image4.x + "&yfour=" + dd.elements.image4.y; } if (productAmount == 5) { location.href="homeview.php?x=" + dd.elements.image1.x + "&y=" + dd.elements.image1.y + "&xtwo= " + dd.elements.image2.x + "&ytwo=" + dd.elements.image2.y + "&xthree= " + dd.elements.image3.x + "&ythree=" + dd.elements.image3.y + "&xfour= " + dd.elements.image4.x + "&yfour=" + dd.elements.image4.y + "&xfive= " + dd.elements.image5.x + "&yfive=" + dd.elements.image5.y; } `
ve fonksiyonu sadece bu kadar görüntü 10 gibi devam ediyor. ben php erişebilirsiniz böylece görüntü URL kaydedilir koordinatlarını görebilirsiniz böylece, benim bir sonraki işlevi bu
<a class="code" href="javascript:void(0);" onclick="moveProduct(<? echo $_SESSION['numberOfProducts']; ?>)">Move Images Back</a>
ve buradan içeri i (moveTo değişkenler de moveTo ikinci bir komut dosyası tarafından sağlanan başka bir işlevi olduğunu, bu ekran kod yazamıyor nedense php değişkenler) bu var:
`function moveProduct(moveAmount) { if (moveAmount == 1) { if(window.dd && dd.elements) { dd.elements.image1.moveTo(, ); } } if (moveAmount == 2) { if(window.dd && dd.elements) { dd.elements.image1.moveTo(, ); dd.elements.image2.moveTo(, ); } } if (moveAmount == 3) { if(window.dd && dd.elements) { dd.elements.image1.moveTo(, ); dd.elements.image2.moveTo(, ); dd.elements.image3.moveTo(, ); } }
` now i know my loop structure is god awful :) but please bear with me. whats happens is inside the moveProduct function, whatever the last if "moveAmount == " is, then images will only be relocated at that number. for example if I have the function set as above only three images will be remembered, not one or two, or four or five, but three only. i actually have ten items so i have the above functions set up for 10 items, and ONLY 10 images will be remembered. When i run the function moveProduct when theres not 10 items on the page, nothing happens at all like I'll load one image, move it, click save, everything looks fine but when i move it back to remembered coordinates nothing happens.
Herhangi bir tavsiye mutluluk duyacağız lütfen yardım