this代表什么??用在哪里??
和document有什么区别??
this.options[this.selectedIndex].index--〉 可以访问属性
而在javascript中
document.Form_add.lm.selectedIndex.index--> 无法访问index属性,只能访问到selectedIndex
请解答困惑!!~~
THIS代表的是自己.
selectedindex表示当前选中的选项
this代码当前对象
上面这两个代码不是一回事,如果document.Form_add.lm为一个 select 的话
这样写
document.Form_add.lm.options[document.Form_add.lm.selectedIndex].index
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/dhtmlrefs.asp