通过jquery .post传递表单变量

时间:2010-11-25 09:02:28

标签: jquery post

这就是帖子的样子,我在“区域”div中“打印”返回数据,因为数据是一个隐藏的形式变量输入类型='hidden'id ='pc1'value =' wh5',是否有可能得到id'pc1'的值?,此刻我得到'未定义'。你使用live还是bind?我查看过这些内容,但它们似乎是针对点击事件的。

$("#chk").click(function(){$.post("includes/mainform_new.php",{

 postcode:$("#postc").val()

},

    function(data){

        $("#area").html(data); <--- the input element pc1 is in the returned data

        alert($("#pc1").val()); <--- returns undefined

      });


});

1 个答案:

答案 0 :(得分:1)

你可以这样做:

function(data){

        var response = $("#area").html(data); <--- the input element pc1 is in the returned data
       alert((response.find("#pc1").val())


      });