我是JQuery的新手,我每天都在学习。但现在我被困了... 对于应该相当简单的事情,我无法开始工作。
我有一个我想在加载时运行的功能。但系统不允许我。 我写了以下代码:
<script type="text/javascript" src="jquery-2.1.1.min.js"></script>
<script type="text/javascript">
function TestFunction(){
alert('We are just testing!');
}
function TestFunctionTwo(){
alert('Yes really!');
}
$(document).ready(function() {
TestFunction();
TestFunctionTwo();
}
</script>
如您所见,应该给出两个警报。 但遗憾的是,该系统什么也没做。
我希望有人可以告诉我我做错了什么。
提前致谢。
P.S。我见过几个类似的问题。然而,他们的解决方案似乎都不适合我。也许有一个关键的逗号我正在添加或遗忘。但我似乎没有得到它: - (
答案 0 :(得分:0)
你没有正确关闭就绪功能。应该是
$(document).ready(function() {
TestFunction();
TestFunctionTwo();
});
答案 1 :(得分:0)
你只是犯了句法错误。准备功能未关闭。
要在功能中防止这种情况,请学习使用浏览器控制台。
答案 2 :(得分:0)
您的托架维修尚未完成。
<script src="------Your jQuery location -------------"></script>
<script>
function TestFunction(){
alert('We are just testing!');
}
function TestFunctionTwo(){
alert('Yes really!');
}
$(document).ready(function() {
TestFunction();
TestFunctionTwo();
})
</script>