通过传递id如何根据php程序的ajax中的id获取值

时间:2013-09-23 06:33:29

标签: php jquery ajax

我需要根据id获取表单,所以我尝试使用ajax发布id,但它没有给出任何响应。我需要帮助。提前致谢

<script type="text/javascript">
jQuery('#getcat').click(function () {
    jQuery('#getcat').hide();
    var divval = jQuery("select[id^='cat']").val();
    jQuery("#Loading").fadeIn();
    datastring = jQuery('#mainform').serialize();
    //datastring='id="'+divval+'"';

    jQuery.post(window.location.pathname + "?form=1", datastring, function (response) {
        jQuery("#Loading").fadeOut('fast');
        jQuery('.form_open').load();
        jQuery('.form_open').html(response);
    });

});
</script>

0 个答案:

没有答案