获取值文本框并将其发送到PHP

时间:2012-04-18 12:38:34

标签: jquery

我有一个表单,需要将文本框的值发送到php端。

我总是将变量的值设置为隐藏,然后将其发送到php端。我觉得这很愚蠢。有没有办法发送像这样的文本框值

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

1 个答案:

答案 0 :(得分:3)

是的,您可以通过jquery ajax,post或get方法发送文本框值。以下是示例

$("#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/

由于