gpt4 book ai didi

javascript - 在非常简单的 JavaScript 函数中嵌入变量

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

您好,由于某种原因我无法使用此功能。

function go(type)
{
location=document.category.example.options[document.category.example.selectedIndex].value
}

我想做的就是嵌入类型变量,每当我尝试做类似的事情时,go 函数就会变得未定义

location=document.'+type+'.example.options[document.'+type+'.example.selectedIndex].value

我做错了什么?

最佳答案

而不是 document.'+type+'.example.options[document.'+type+'.example.selectedIndex].value 你应该写:

document[type].example.options[document[type].example.selectedIndex].value

关于javascript - 在非常简单的 JavaScript 函数中嵌入变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19874292/

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