|
var i;
a = new array();
a = document.getElementsByName("$mq_title[i]");
for(i=0;i <a.length;i++)
{
alert(a[i]);
}
function changelocation(locationid)
{
document.form1.mq.options[0]=new Option("-请选择-","");
document.form1.mq.length = 1;
var locationid=locationid;
var i;
for (i=0;i < 4; i++)
{
if (a[i][2] == locationid)
{
document.form1.mq.options[document.form1.mq.length] = new Option(a[i][3], a[i][4]);
}
}
} |
|