Heim > Artikel > Backend-Entwicklung > jquery ajax怎么传递参数到php中去
jquery ajax如何传递参数到php中去?
下面问题是从这个问题延迟出来的:如何让传参又不跳转网页?
下面的index.htm提交以后,通过addpage.php生成了result.htm,但没有得到folder和page的数据,数据为空白。请问要怎么设置?
index.htm代码如下
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <title>ajax</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <script type="text/javascript" src="http://localhost/leb/auto/js/jquery-latest.js"></script> <script type="text/javascript"> $(function(){ $("#config").submit(function(){ $.ajax({ type:"GET", url:"addpage.php", }); }); }); </script>