我想知道是否有人能够帮助或指出我的方向。我正在寻找像测验一样的网络应用程序。我需要的是能够从动态创建的按钮或 href 加载动态内容,在这种情况下,它将链接到其他内容。到目前为止,它似乎没有起作用,因为每次单击按钮时我都找不到一个页面。似乎没有通过名称传递.php。我已经在动态内容 div 之外对其进行了测试,它工作正常,但我真的需要它在内部工作。到目前为止我所拥有的:
索引.php
<body>
<div class="container_12">
<div id="content">
<!--dynamic content loads here-->
</div>
</div>
</body>
登录.php
<h1> Login Page </h1>
<p> this is a test to c if works </p>
<a href='Suitable'>Hello</a> <!--button that doesnt work-->
通用.js
$(document).ready(function() {
//initial
$('#content').load('Login.php');
//Handle widget Clicks
$('div#content a').click(function() {
var page = $(this).attr('href');
$('#content').load('pages/' + page +'.php');
return false;
});
});
合适的.php
<h1> Working </h1>
<!-- content thats not loading off button-->