我找不到下面代码无效的原因。这似乎是一个普通的“测试”警报,但它不起作用!
这是一个.php文件,其中包含以下代码:
<?php
require_once('../../usefull/functions');
if(!session->loggedIn)
{ redirect_to("../index.php"); }
?>
<link href="../ssheet.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../scripts/Image.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
alert("hello");
});
</script><?php
<div id="imagelist"></div>
提前致谢!
解答:
我的SelectImage文件中出现了一个错误。调用了一个在该特定PHP文件中不存在的元素。
答案 0 :(得分:5)
你的语法很接近,但没有雪茄。字面上只是缺少a)。 RTM...
$( document ).ready(function() {
答案 1 :(得分:2)
在php代码中:if(!session->loggedIn)
我相信你在会话之前错过了$
。防爆。
if(!$session->loggedIn)
答案 2 :(得分:0)
$(document).ready(function() {
alert("hello");
});
您错过了代码中的一个括号
答案 3 :(得分:0)
&#34;文件&#34;之后的结束括号丢失了变量。正确的形式是
$(document).ready(function(){
alert("hello");
});
答案 4 :(得分:0)
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
alert('Hello');
});
</script>
</head>
<body>
</body>
</html>