jquery.get结果从php到另一个输入

时间:2013-07-09 06:41:08

标签: php jquery ajax get slug

我正在使用以下代码:

$('#inputname').change(function(){ //on change event
            var parentVal = $('#inputname').val(); 
            $.ajax({
                url     : 'file.php',
                type    : 'GET', //type of request, GET or POST
                data: ({ svalue: parentVal }),
                success : function(data){ $('#slug').html(data); }
            });

        });

我想在php中处理后,将一个文本字段中输入的内容显示到另一个文本字段。在文件php中我只有一个echo $ _GET ['svalue']用于测试目的。

有什么想法?谢谢!

2 个答案:

答案 0 :(得分:0)

如果是文字字段,请使用.val代替.html

 $('#slug').val(data);

答案 1 :(得分:0)

我有一些可以帮助你的东西。 在哪里使用:

use .html() to operate on containers having html elements.
use .text() to modify text of elements usually having separate open and closing 
            tags

不使用的地方:

.text() method cannot be used on form inputs or scripts.
    .val() for input or textarea elements.
    .html() for value of a script element.

Picking up html content from .text() will convert the html tags into html 
entities.

差异:

.text() can be used in both XML and HTML documents.
.html() is only for html documents.