Php değişken bir javascript değişkenin değerini atamak nasıl

0 Cevap php

Ben bir formu var.

<form action="inc/genxml.php" method="post">
      <input id="nameTxt" name="name" type="text" value="test"/>
      <button id="nameSave" class="left">Save</button>
</form>

Ve bir div elemanı # isim

When I click the save button, I want to pass the position of the div #name to the form action file. To get the position, I'm using jQuery .position().

Aşağıdaki gibi bir şey. (Ki sadece koordinatları yazdırır)

$('#nameSave').click(
    function() {
        var pos = $('#name').position();
        alert("left: " + pos.left + ", top: " + pos.top );
    }
);

Ben (dosya genxml.php bu durumda) form action dosyasına koordinat değerleri (pos.left & post.top) geçmek istiyorum.

Bunu nasıl yapmalıyım?

0 Cevap