jQuery的:
<script type="application/javascript">
$(document).ready(function() {
alert('hello world');
}
</script>
我知道这个函数没有拼写错误。但是,它还没有在文件准备就绪时提醒我。你可以http://newseinstein.com/Rwork/index.php/Lost/step_2查看现场直播,请帮助我,抱歉我的英语不好。
答案 0 :(得分:2)
您缺少)
功能的ready
<script type="application/javascript">
$(document).ready(function() {
alert('hello world');
});
</script>
答案 1 :(得分:0)
你的功能不正确。你忘记了最后一个括号。
正确的是
<script type="application/javascript">
$(document).ready(function() {
alert('hello world');
})
</script>
检查