A.appendChild() B.removeChild() C.appendTo() D.remove()
单项选择题for(i=0, j=0; i<10, j<6; i++, j++){ k = i + j; }; console.log(k);的打印结果是()
A.10 B.18 C.undefined D.NaN
单项选择题javaScript中()变量的作用范围是在方法内有效
A.全局变量 B.局部变量 C.环境变量 D.以上都不对
单项选择题var x = 1; var y = 0; var z = 0; function add(n){n=n+1;}z=add(x);console.log(z)的打印结果是()
A.0 B.2 C.undefined D.以上都不正确
单项选择题获取div下面所有的button,以下写法正确的是()
A.document.querySelectorsAll(’button’) B.document.getElementsByTagName(’button’) C.document.getElementByTagName(’button’) D.document.querySelector(’button’)
单项选择题()语句可以为一个demo元素同时添加color及background这两个行内样式
A.demo.style.cssText="color:red;background:blue;" B.demo.style="color:red;background:blue;" C.demo.style.text="color:red;background:blue;" D.以上说法都不正确