我正在开发我的第一个 jquery 移动 Web 应用程序,并试图了解与一个 HTML 文件中的多个页面相关的服务器端 (PHP) 代码的关系。
在这种情况下,我有一个 html 文件,其中包含 Web 应用程序的所有各种页面:索引、登录、注册、设置等(只是前端,所有实际数据请求都通过 PRG 处理)。根据显示的任何#page,我可以将我的PHP代码嵌套在#page div中,以便仅在调用该#page div时运行,还是无论调用哪个页面div,所有的php都运行?
例子:
<div data-role="page" id="index" data-theme="b">
<?php $this is some thing that is pertinent only to elements within the #index page.?>
</div> <!--#index -->
<div data-role="page" id="login" data-theme="b">
<?php $this is something that is only pertinent to the login page, and will NOT play nice with the other php code in the page.?>
</div> <!-- #login -->
这两个 php 项目会运行,还是只会运行活动的#page div 中的项目?
非常感谢任何帮助或建议。