gpt4 book ai didi

JavaScript 渲染

转载 作者:行者123 更新时间:2023-11-28 20:39:00 28 4
gpt4 key购买 nike

为什么这个 HTML/脚本(来自“JavaScript Ninja 的 secret ”)不渲染?

http://jsfiddle.net/BCL54/

<html>
<head>
<script>
function outer(){

var a = 1;

function inner(){ /* does nothing */ }

var b = 2;

if (a == 1) {
var c = 3;
}

}

outer();

assert(true,"some descriptive text");
assert(typeof outer==='function',
"outer() is in scope");
assert(typeof inner==='function',
"inner() is in scope");
assert(typeof a==='number',
"a is in scope");
assert(typeof b==='number',
"b is in scope");
assert(typeof c==='number',
"c is in scope");
</script>
</head>
<body>
</body>
</html>

最佳答案

因为您没有导入包含 assert 函数的 Resig 必要脚本:

<script>
function assert(pass, msg){
var type = pass ? "PASS" : "FAIL";
jQuery("#results").append("<li class='" + type + "'><b>" + type + "</b> " + msg + "</li>");
}
function error(msg){
jQuery("#results").append("<li class='ERROR'><b>ERROR</b> " + msg + "</li>");
}
function log(){
var msg = "";
for ( var i = 0; i < arguments.length; i++ ) {
msg += " " + arguments[i];
}
jQuery("#results").append("<li class='LOG'><b>LOG</b> " + msg + "</li>");
}
</script>

您可以在 his site 的源代码中找到这些函数。请注意,这些函数还需要 jQuery 和一些要写入的 DOM 元素。您最好适应您的页面。

在您足够熟练地使用 javascript 来重写这些函数之前,您最好直接在网站上进行出色的练习。

关于JavaScript 渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14759832/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com