最新回答 / 晚风铃铃
var w= document.documentElement.clientWidth || document.body.clientWidth; var h= document.documentElement.clientHeight || document.body.clientHeight;注意格式
2019-05-29
最赞回答 / qq_慕先生5309085
赋值方向反了。把d付给fruit,d应该在右边。把 d = document.getElementById("fruit").value 换成 document.getElementById("fruit").value = d ,就对了
2019-05-28
最新回答 / 唯恋博
可以加个if判断是否为复选框,满足条件选中就不会选中按钮了
已采纳回答 / 阳火锅
<...图片...>把我圈出来的这节删除就可以了。望采纳
var mydate=new Date();
document.write("当前时间:"+mydate+"<br>");
mydate.setTime( mydate.getTime() + 2* 60 * 60 * 1000);
document.write("推迟二小时时间:" + mydate);
mydate.setTime( mydate.setTime(7200000));
document.write("添加7200000毫秒后的时间为:" + mydate);
document.write("当前时间:"+mydate+"<br>");
mydate.setTime( mydate.getTime() + 2* 60 * 60 * 1000);
document.write("推迟二小时时间:" + mydate);
mydate.setTime( mydate.setTime(7200000));
document.write("添加7200000毫秒后的时间为:" + mydate);
2019-05-27