更新:修正プログラムは動作しませんでしたが、コメントありがとうございました。私がkjquery.jsをインクルードしていなくても、すべての読み込みメッセージが出力されます。私は本当にここに迷っています。それ以上の提案があれば教えてください!jQueryプリントの読み込みページの「読み込み」
jQueryを含めると、すべてのコンテンツの後にページの末尾に「読み込み中」と表示されます。私は自分のサーバーとGoogle APIからロードしようとしましたが、同じ結果が両方の時間に見つかりました。
はこちらのページです: http://kineticaid.com/k/header.php
そして、ここのコードです:
<?php
include('inc/functions.php');
include('inc/titles.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $title; ?></title>
<link rel="stylesheet" type="text/css" href="css/headerstyle.css"></link>
<link href="http://fonts.googleapis.com/css?family=Ubuntu|Arimo|PT+Sans:700|Droid+Sans|Nobile|Ovo|Corben:700&v2" rel="stylesheet" type="text/css"></link>
<script type="text/javascript" src="js/kjquery.js"></script>
//this is the problem line
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/shadowbox/shadowbox.js"></script>
<script type="text/javascript">Shadowbox.init();</script>
</head>
<body>
<div id="container">
<div id="top">
<?php echo $quote." -".$author; ?>
</div>
はもちろん、私は任意のタグを閉じていなかったが、これらはfooter.phpファイルです。ヘッダーとフッターの両方のファイルはhome.phpファイルに含まれており、読み込み時には「読み込み中」という語句も表示されます。
あなたはkjquery.jsでスクリプトエラーがあります: 'kjquery.js'は' ')が不足している} – Keith
を逃し、5行目を。 –
"loading"メッセージは、確かにjQuery自体から来ていません。 – Sparky