我正在做一个小管理面板,想知道在单击面板中的按钮后是否可以使用 jQuery 在 index.php 文件中添加一个 div 框?
如果是这样,一个小例子将不胜感激!
您需要使用 jQuery 的$.post()方法发送 XML http post 请求,然后让服务器上的 php 文件修改索引文件,或者可以包含在索引文件中的文本文件:
$.post('indexEdit.php', {info: "info to ad to file"}, function(data){ /*callback here*/ });
确保 indexEdit.php 具有会话验证,否则其他人可能会尝试向其发布信息并执行外部编辑。
要将代码添加到 div 的开头,请使用prepend
方法。要将代码添加到 div 的末尾,请使用append
方法。
以下是向 html 页面正文添加代码的 2 个示例:
$("body").prepend("This is some div added to the start of the page.");
$("body").append("This is some div added to the end of the page.");
如果您想动态加载内容,则必须使用ajax方法并在回调中使用上面的代码。