Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
编辑:我正在尝试遵循这个分页教程。我已经让它工作了。但是,当我尝试通过调用 php 文件(分页)来加载它时,教程中的 jquery 不起作用。你知道为什么吗?
<script> function ajax_loadpage(loadUrl,output_container) { $.post ( loadUrl, {language: "php", version: 5},function(responseText){$(output_container).html(responseText);},"html" ); } ajax_loadpage("url1.php","#div_wrapper_or_container"); </script>