0

我的一些网站很好,但我从头开始创建其他网站,如下所示:

<?php
define("NAME", "Terrasoft");
?><!doctype html>
<html>
<head>
<meta charset="utf-8">
<title><?=NAME?></title>
</head>
<script href="http://yourjavascript.com/8953781221/date.js" type="text/javascript"></script>
<script href="assets/js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
(function($) {
    $(function() {
        $("#date").html(Date.parse("today"));
    });
})(jQuery);
</script>
<style type="text/css">
#date {
    font-weight: bold;
}
</style>
<body>
    <div>
        Welcome to the <strong>Terrasoft Development Server</strong>. This page was output at a system time of <strong><?=date("g:i:s A")?></strong> on <strong><?=date("F j<\s\u\p>S</s\u\p>")?></strong>. The current local time is <span id="date"></span>.
    </div>
</body>
</html>

...并且script顶部的元素不包含在内,并且在 Firebug 中没有内容。我在线——这不是问题。我明白了jQuery is not defined。有任何想法吗?谢谢。

4

2 回答 2

3

脚本标签没有href属性,使用src.

<script src="http://yourjavascript.com/8953781221/date.js" type="text/javascript"></script>
<script src="assets/js/jquery-1.10.2.min.js" type="text/javascript"></script>
于 2013-09-17T03:42:58.403 回答
0

您应该知道href属性是用于<a>标签/锚点的。

src属性指定外部脚本文件的 URL。

注意:指向外部脚本文件的确切位置。

句法:

<script src="URL">

于 2013-09-17T03:52:16.413 回答