gpt4 book ai didi

JavaScript 函数参数语句

转载 作者:行者123 更新时间:2023-11-28 02:15:05 24 4
gpt4 key购买 nike

我的问题是:(仅作为示例,总体上没有意义):

// make a function and pass part of the statement as argument
function ExampleFunction( argument ) {
document.getElementById('TestID')[0].style.argument = '#f00';
}

// then later onload
ExampleFunction( background );

我发现这样不行,但我不知道它是如何正确的。如果有人可以纠正这个例子,让我继续前进,我将非常高兴和感激。

最佳答案

首先,document.getElementById 返回单个元素(如果未找到元素,则返回 null),因此不是 [0]。其次,如果您想动态引用属性,请使用 [] 表示法

// make a function and pass part of the statement as argument
function ExampleFunction( argument ) {
document.getElementById('TestID').style[argument] = '#f00';
}

// then later onload
ExampleFunction( 'background' );

http://jsfiddle.net/HM3mu/

关于JavaScript 函数参数语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16513285/

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