gpt4 book ai didi

javascript - 我的网页不显示来自不同 html 页面的文本。 (javascript/jquery/ajax)

转载 作者:行者123 更新时间:2023-12-03 06:25:22 25 4
gpt4 key购买 nike

在此项目中,我为 contact.html 文件创建一个 contact.js 文件,该文件将从listings.html 文件中提取数据并将其全部内容附加到 contact.html 页面中的 aboutUs div。我编写了一个函数,使listings.html文件中的内容出现在contact.html文件中,但是当我打开网页时,内容仍然没有显示。我在这里做错了什么。

我正在使用 contact.html 文件、contact,js 文件和listings.html 文件(以及 jquery 文件)。

我的 contact.html 文件是这样的:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Real Estate Sold</title>
<link rel="stylesheet" type="text/css" href="listing.css" />

<script type="text/javascript" src="jquery-1.11.1.js"></script>
<script type="text/javascript" src="contact.js"></script>

</head>
<body>

<nav class="main-navigation" role="navigation">
<div>
<ul id="menu-main-menu" class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Regional Info</a></li>
<li><a href="index.html">Current Listings</a></li>
<li><a href="#">Sold</a></li>
<li><a href="index.html">About Us</a></li>
</ul></div>
</nav>


<div id="aboutUs"></div>

</body>
</html>

我的 contact.html 文件是这样的:

 $("document").ready(function() {
getData();
});

function getData() {
$("#aboutUs").load("listings.html");
}

我的listings.html文件是这样的:

<h2>About Us</h2>
<p>Wright Realty is a family owned real estate brokerage specializing in custom homes since 1852.
We appreciate that our customers demand quality that endures for generations, so we only
list with homeowners who have maticulously maintained their unique and timeless homes.</p>
<h3>Our Realtors:</h3>
<ul></ul>

最佳答案

似乎您正在使用 file:// 加载文件,这是不允许的。您必须改用http://

您可以使用http-server快速启动服务器:

npm install http-server -g

使用它:

cd *your folder*
http-server

关于javascript - 我的网页不显示来自不同 html 页面的文本。 (javascript/jquery/ajax),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38680501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com