1.table中的td若设置了width属性,仅仅改变colspan,在IE中还是会换行
2.var selectIndex = document.getElementById("sect").selectedIndex;//获得是第几个被选中了
var selectText = document.getElementById("sect").options[selectIndex].text //获得被选中的项目的文本
当select没有选中时,selectIndex会返回-1,执行第二行时会报错(undefined)3.Form 对象的 onsubmit 属性指定了一个事件句柄函数。当用户单击了表单中的 Submit 按钮而提交一个表单时,就会调用这个事件句柄函数。注意,当调用方法Form.submit() 时,该处理器函数不会被调用。