jquery没有在php包含文件上工作

时间:2017-03-08 17:04:26

标签: php jquery html twitter-bootstrap

Jquery不工作包含File.Here是我的代码示例。但是在LocalHost中工作正常。我也在使用Bootstrap。

<body> 
<?php 
include('header.php');
if(UserType=="User")
{
// In This Portion Jquery Work :)
include('BProfile.php');
}
elseif(userType=="Premium")
{
//In this Portion Jquery Dose Not Work but file load properly :(
include('PProfile.php');
}
else
{
echo 'unable To Load Profile';
}
include('footer.php');
?> 
//I also Put The Jquery On Top But Dose Not Work for PProfile
<script type="..." src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</body>

谢谢和最好的反馈

0 个答案:

没有答案