题目内容

要通过脚本代码设置盒子div1为显示状态,需要使用的代码是

A. document.getElementById('div1').display='block'
B. document.getElementById('div1').style.display='none'
C. document.getElementById(div').style.display='block'
D. document.getElementById('div1').style.display='block'

查看答案
更多问题

点击“注册”按钮在新窗口中打开文件zhuce.html,需要使用哪个代码实现

A. onsubmit="window.open(zhuce.html);"
B. onsubmit="window.open('zhuce.html');"
C. onclick="window.open('zhuce.html');"
D. onclick="window.open(zhuce.html);"

假设用户在登录时,输入的用户名信息保存在变量$emailaddr中,密码保存在变量$psd中,查询数据表usermsg中是否存在该用户名和密码信息,需要定义的查询语句是

A. select * from usermsg where emailaddr='$emailaddr' or psd='$psd'
B. select * from usermsg where emailaddr='$emailaddr' and psd='$psd'
C. select * from usermsg where emailaddr=$emailaddr and psd=$psd
D. select * from usermsg where emailaddr=$emailaddr or psd=$psd'

查询用户名和密码信息是否存在时,关于查询结果记录集$result的说法错误的是

A. 该记录集中的记录数只能是0或者1
B. 该记录集中的记录数无法预知
C. 若记录数是0,说明用户输入的账号或者密码信息有误
D. 若记录数是1,说明用户输入的账号和密码信息正确

要获取记录集$result中的记录数,需要使用代码

A. count($result)
B. mysql_num_row($result)
C. mysql_nums_rows($result)
D. mysql_num_rows($result)

答案查题题库