分析下面的Javascript代码段,输出结果是() var mystring=”I am a student”; var a=mystring.substring(9,13); document.write(a);
A.stud B.tuden C.uden D.udent
A.<input name=”mybutton” type=”button” onBlur=”compute()”value=”计算”> B.<input name=”mybutton” type=”button” onFocus=”compute()”value=”计算”> C.<input name=”mybutton” type=”button” onClick=”function compute()”value=”计算”> D.<input name=”mybutton” type=”button” onClick=”compute()”value=”计算”>
A.history对象记录了用户在一个浏览器中已经访问过的URLs B.location对象相当于IE浏览器中的地址栏,包含关于当前URL地址的信息 C.location对象是history对象的父对象 D.location对象是window对象的子对象