当我使用ajax调用页面时,jquery似乎无法加载

时间:2013-12-06 06:30:28

标签: php jquery html ajax validation

您好我无法为我的网站加载jquery,它由1个主GUI和许多其他使用ajax编码的页面组成主要问题是主GUI似乎没有加载具有jquery或验证的迷你页面在他们身上可以帮助我吗?

这是主页的脚本

<script src="gapi2.js"></script>//This is the jquery 
<script type="text/javascript">        
    $(document).ready(function(){//This is the start of the jquery     
       $("#contact_us").click(function(){
           $("#contact").load("plist.php?id");
       });
    });

</script>

这是html

<a id="contact_us">Contact Us</a>
<div id='contact'></div>
 //This is for the validation
<script src="jquery-validation2.js"></script>
<script src="jquery-validation.js"></script>
<script> $.validate(); </script>

这是第二页

<form action='page2.php' method='POST'>
Name:  <input type='text'>
Age: <input type='text'>
</form>

我尝试了很多jquery但它似乎无法帮助我验证它只是对下一页进行了直接并保存它并且它甚至不验证页面任何帮助真的会受到赞赏和谢谢!

1 个答案:

答案 0 :(得分:0)

<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>

<script type="text/javascript">        
    $(document).ready(function(){//This is NOT the start of the jquery     
       $("#contact_us").click(function(){
           $("#contact").load("plist.php?id");
       });
    });

</script>