我有一个由jquery,php和ajax创建的响应式页面。同一页面根据所选的LI加载来自另一个php页面的内容。我有这个工作正常。 php页面包含其他php页面,具体取决于所选的LI。我是否需要包含CSS&所有php页面上的jquery呢?在所有页面中包含脚本路径会使响应非常慢。
主页:
<UL>
<li>1</li>
<li>2</li>
<li>3</li>
<UL>
检查LI选择的PHP页面,包括另一个php页面:
if(isset($_POST['li'])){
$li = $_POST['li'];
if($li=='1'){
include 'other1.php'
}
if($li=='2'){
include 'other2.php'
}
}
other1.php:
<div id="otherdiv1">
click functions to do something . Functions included in jquery defined in MainPage.
</div>
<div id="otherdiv2">
</div>
在主页面中正确列出了other1.php,但除非jquery也包含在other1.php中,否则不会执行onclick功能。
在每个页面中包含jquery路径和jquery脚本路径会使响应变得非常慢。
有没有简单的方法呢?