JsFiddle 未准备好执行
JsFiddle not executing on ready
我正在跟踪 guy's example 摆弄,但尽管他在左侧添加了 jQuery,但脚本不会在 运行 上执行。
//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js
$(document).ready(function(){
alert("hjk");
});
我不能问他,所以我想知道我会错过什么简单的事情。
我检查了 jQuery 页面 here. The link to jQuery library is mentioned here 上的语法是否正确。
只需点击javascript内容框右上角的Javascript按钮,然后选择jquery作为框架,您也可以在onDomready和onLoad之间进行选择。无需在左窗格中手动添加 jquery js。
此外,javascript 内容框中的 js 代码不应包含在 $(document).ready
之类的内容中,因为 jsfiddle 已经这样做了。
我正在跟踪 guy's example 摆弄,但尽管他在左侧添加了 jQuery,但脚本不会在 运行 上执行。
//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js
$(document).ready(function(){
alert("hjk");
});
我不能问他,所以我想知道我会错过什么简单的事情。
我检查了 jQuery 页面 here. The link to jQuery library is mentioned here 上的语法是否正确。
只需点击javascript内容框右上角的Javascript按钮,然后选择jquery作为框架,您也可以在onDomready和onLoad之间进行选择。无需在左窗格中手动添加 jquery js。
此外,javascript 内容框中的 js 代码不应包含在 $(document).ready
之类的内容中,因为 jsfiddle 已经这样做了。