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.以上都不正确
A.document.querySelectorsAll(’button’) B.document.getElementsByTagName(’button’) C.document.getElementByTagName(’button’) D.document.querySelector(’button’)
A.demo.style.cssText="color:red;background:blue;" B.demo.style="color:red;background:blue;" C.demo.style.text="color:red;background:blue;" D.以上说法都不正确