我需要根据 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>