0

以下代码似乎仅适用于 IE。在 Chrome 或 Safari 中,我收到以下错误:

我在 Chrome 中遇到的控制台错误是:

未捕获的类型错误:对象# 的属性“选择文本”不是函数

这是代码:

function LoadPageText(){
document.location.href = "editpage.asp?file="+document.form.file.value+"&text="+document.form['choosetext'](document.form['choosetext'].selectedIndex).value;
}

如何解决 Safari 和 Chrome 的此错误?

4

1 回答 1

1

尝试使用元素 id 访问值

document.getElementById('ElementId').value

对于下拉列表

document.getElementById('dropdownId').selectedIndex

获取选定的索引

于 2012-10-04T08:54:14.533 回答