JavaScript 未在 jsfiddle.net 上运行
下面的代码可以在实时网站上运行,但我无法让它在网站 jsfiddle 上运行。
例如,请参阅此。
谁能告诉我为什么它在 jsfiddle 上不起作用?
在控制台上记录:ReferenceError:fillList未定义
和ReferenceError:mySelectList未定义
。
当代码作为片段嵌入此处时,您可以看到该代码的工作原理:
function BetterSelect(oSelList) {
this.objSelectList = oSelList;
this.objSelectList.onchange = this.selectionChanged;
}
BetterSelect.prototype.clear = function() {
this.objSelectList.options.length = 0;
}
BetterSelect.prototype.fill = function(aValues) {
this.clear();
for (var i = 0; i < aValues.length; i++) {
this.objSelectList.options[i] = new Option(aValues[i]);
}
}
BetterSelect.prototype.find = function(strToFind, bSelect) {
var indx = -1;
this.objSelectList.options.selectedIndex = -1;
for (var i = 0; i < this.getCount(); i++) {
if (this.objSelectList.options[i].text == strToFind) {
indx = i;
if (bSelect)
this.objSelectList.options.selectedIndex = i;
}
}
return indx;
}
BetterSelect.prototype.getCount = function() {
return this.objSelectList.options.length;
}
BetterSelect.prototype.selectionChanged = function() {
alert("selection changed!");
}
var mySelectList = null;
window.onload = function() {
mySelectList = new BetterSelect(document.getElementById('theList'));
}
function fillList() {
mySelectList.fill(["one", "two", "three", "four", "five"]);
}
function findIt() {
mySelectList.find(document.getElementById('txtToFind').value, true);
}
<form action="" method="post">
<select multiple="multiple" name="Select1" id="theList" style="width: 152px; height: 226px">
</select>
<br />
<input name="Button1" type="button" value="Fill The List" onclick="fillList()" />
<input name="Button4" onclick="mySelectList.clear()" type="button" value="Clear The List" />
<br />
<input name="Button2" onclick="alert(mySelectList.getCount())" type="button" value="What's The Count?" />
<br />
<input name="Text1" type="text" id="txtToFind" />
<input name="Button3" type="button" value="Search" onclick="findIt()" />
</form>
The code below works on a live site but I can't get it to run on the site jsfiddle .
See this for example.
Can anyone tell me why it's not working on jsfiddle?
On the console it logs: ReferenceError: fillList is not defined
and ReferenceError: mySelectList is not defined
.
The code works as you can see when it's embedded here as snippet:
function BetterSelect(oSelList) {
this.objSelectList = oSelList;
this.objSelectList.onchange = this.selectionChanged;
}
BetterSelect.prototype.clear = function() {
this.objSelectList.options.length = 0;
}
BetterSelect.prototype.fill = function(aValues) {
this.clear();
for (var i = 0; i < aValues.length; i++) {
this.objSelectList.options[i] = new Option(aValues[i]);
}
}
BetterSelect.prototype.find = function(strToFind, bSelect) {
var indx = -1;
this.objSelectList.options.selectedIndex = -1;
for (var i = 0; i < this.getCount(); i++) {
if (this.objSelectList.options[i].text == strToFind) {
indx = i;
if (bSelect)
this.objSelectList.options.selectedIndex = i;
}
}
return indx;
}
BetterSelect.prototype.getCount = function() {
return this.objSelectList.options.length;
}
BetterSelect.prototype.selectionChanged = function() {
alert("selection changed!");
}
var mySelectList = null;
window.onload = function() {
mySelectList = new BetterSelect(document.getElementById('theList'));
}
function fillList() {
mySelectList.fill(["one", "two", "three", "four", "five"]);
}
function findIt() {
mySelectList.find(document.getElementById('txtToFind').value, true);
}
<form action="" method="post">
<select multiple="multiple" name="Select1" id="theList" style="width: 152px; height: 226px">
</select>
<br />
<input name="Button1" type="button" value="Fill The List" onclick="fillList()" />
<input name="Button4" onclick="mySelectList.clear()" type="button" value="Clear The List" />
<br />
<input name="Button2" onclick="alert(mySelectList.getCount())" type="button" value="What's The Count?" />
<br />
<input name="Text1" type="text" id="txtToFind" />
<input name="Button3" type="button" value="Search" onclick="findIt()" />
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您定义的函数是在 onload 函数中定义的,因此在它们之前是可引用的,因为它们是在该函数中定义的,所以只能从该函数内引用它们。您可以在 HTML 中将它们作为全局变量引用。您有三个选择
a) (最简单、最快、不理想)- 将
function blah(){}
更改为window.blah = function(){};
制作函数全球的。b) (理想的方式)- 使用不显眼的 Javascript 将行为仅从 JS 中附加到 DOM 元素,这意味着将 HTML 与 JS 分开。
c) 让 jsfiddle 不包装 onload 的内容。将
onLoad
更改为不换行( body 或 head )。因此,您应该执行
而不是
var e = document.getElementById('foo'); e.onclick = lol;
仅在 JS 中。我推荐 b,因为它鼓励最佳实践。
The functions you define are defined in an onload function, so whereas before they were referenceable, because they are defined in that function they can only be referenced from within that function. You reference them as globals in your HTML. You have three options
a) ( easiest, quickest, not ideal ) - change
function blah(){}
towindow.blah = function(){};
making the functions global.b) ( ideal way ) - use unobtrusive Javascript to attach behaviour to DOM elements from within the JS solely, meaning separate HTML from JS.
c) Make the jsfiddle not wrap the stuff onload. Change
onLoad
to no wrap ( body or head ).So instead of
<p onclick="lol()" id="foo">
you'd dovar e = document.getElementById('foo'); e.onclick = lol;
in the JS only.I recommend b as it encourages best practices.
在你的小提琴中,在左侧的下拉列表中选择
no wrap (head)
,然后单击“运行”,它将起作用。查看示例 →
当选择
onLoad
时,您的函数仅在$(document).ready(function() {});
的闭包内定义。In your fiddle select
no wrap (head)
in the dropdown on the left, click Run and it will work.See example →
When
onLoad
is selected your functions are defined within the closure of the$(document).ready(function() {});
only.我发现了同样的问题,并通过更改 JavaScript 设置中的
Load Type
来解决它:Nowrapp-in
或Nowrap-in< /code> 在 JavaScript 设置下拉菜单中。请参阅下图。
JavaScript 设置菜单
I found the same issue and solve it by changing
Load Type
in the JavaScript settings:No wrap-in<head>
orNo wrap-in<body>
in the drop down JavaScript settings menu. Refer the below image.JavaScript Settings Menu
看一下:
https://stackoverflow.com/a/4935684/6796393
或者最好看看这个:
<一个href="https://stackoverflow.com/a/19110630/6796393">https://stackoverflow.com/a/19110630/6796393
这是我测试的:
最好
使用第二种方法。
PS>我来自如何使用JS解析JSON字符串中的参数?
Look at:
https://stackoverflow.com/a/4935684/6796393
Or it is better to see this one:
https://stackoverflow.com/a/19110630/6796393
Here is what I tested:
and
It is better to use the second aproach.
P.S.> I came from How to parse parameters from JSON String using JS?