2012-04-18 81 views
0

我有一個窗體,並需要發送文本框的值爲php方。獲取值文本框,並將其發送到php

我總是把我的變量的值隱藏起來,然後發送給php端。我認爲這是愚蠢的。有沒有辦法發送這樣的文本框值

$.post("adasda", {"degisken1":$("#txtEmail").val()} ,function(response){}) 
+0

你應該能正常運行的代碼,假設'adasda'是在你的web應用程序的有效路徑。你有什麼具體問題嗎? – 2012-04-18 12:43:05

+0

我只有對象數據:S – snnlankrdsm 2012-04-18 12:45:55

回答

3

是的,你可以通過jQuery的ajax,發佈或獲取方法發送文本框的值。下面是一個示例例如

$("#searchForm").submit(function(event) { 
    /* stop form from submitting normally */ 
    event.preventDefault(); 

    /* get some values from elements on the page: */ 
    var $form = $(this), 
     term = $form.find('input[name="s"]').val(), 
     url = $form.attr('action'); 

    /* Send the data using post and and get the results */ 
    $.post(url, { s: term }, 
     function(data) { 
      // write your code here 
     } 
    ); 
}); 

詳情請看這裏http://api.jquery.com/jQuery.post/

感謝

+0

$ .post('/ json/management/updateAllAjax', { 「name」:$(「#IDname」).val() ,「orgName」:$(「# IDOrg「)。val() }, function(response){ alert(response); }); alert($(「#IDname」).val())給出的值,但我不能發送這個到PHP端 – snnlankrdsm 2012-04-18 13:02:43

+0

看到我的上面的例子是發送值'term'與's'變量,這將轉到動作url。或者,在編寫post方法並提醒他們之前,最好在某些變量中獲取這些值。然後嘗試通過post方法發送這些變量。 – 2012-04-18 13:29:51

相關問題