我正在尝试在函数 createList 的 for 循环中使用我的代码中看到的属性“list”,但除非我定义像 var list = .....; 这样的列表 在 createList 中它不起作用。
var app =
{
list:document.bluetoothList.pairedDevices,
createList : function()
{
for(var i=0; i<5; i++)
{
app.list.options[i] = new Option("name" + i, "mac" + i);
}
document.getElementById("address").innerHTML=app.list.options[app.list.selectedIndex].value;
},
prints : function()
{
document.getElementById("address").innerHTML=app.list.options[app.list.selectedIndex].value;
}
}