0

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

我总是将变量的值隐藏起来,然后将其发送到 php 端。我认为这是愚蠢的。有没有办法发送这样的文本框值

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

1 回答 1

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/

谢谢

于 2012-04-18T12:50:00.657 回答