我的一些网站很好,但其他我从头开始创建:
<?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
。有任何想法吗?感谢。
答案 0 :(得分: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>
答案 1 :(得分:0)
您应该知道href
属性适用于<a>
代码/锚。
src
属性指定外部脚本文件的URL。
注意:指向外部脚本文件的确切位置。
语法:
<script src="URL">