Home > Backend Development > PHP Tutorial > jQuery中使用.load()方法加载另一个页面内容时无效

jQuery中使用.load()方法加载另一个页面内容时无效

WBOY
Release: 2016-06-06 20:42:13
Original
969 people have browsed it

如图所示的代码:

jQuery中使用.load()方法加载另一个页面内容时无效
不论是在本地还是在服务器段访问,都是一片空白,也就是说不能加载同一目录下的test.html文件~,查了一些资料,也找不到原因,求破。

感谢。

回复内容:

如图所示的代码:

jQuery中使用.load()方法加载另一个页面内容时无效
不论是在本地还是在服务器段访问,都是一片空白,也就是说不能加载同一目录下的test.html文件~,查了一些资料,也找不到原因,求破。

感谢。

代码执行的时候,test_div还没不存在,把<script></script>标签放到test_div的下方或者将代码放在jQuery(function ($) { })中,以确保test_div已经存在。

= = 选择器没有获取到匹配的元素吧

这段代码执行的时候并不担保DOM结构就绪。实际上执行这个<script></script>块的顺序(我记得)是先于解析后边的,所以就跪了。请老老实实的:

<code>$(function() {
    // whatever you want
});
</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template