最新回答 / 慕慕0508951
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>无标题文档</title></head><body><div id="content"> <h1>html</h1> <h1>php</h1> &...
2018-11-20
最赞回答 / KingToAce
输出的数组名写错了:document.write("数组的第一个值:"+myarr[0]); 你定义的是myarray而不是myarr,你把输出的数组改为myarray就可以了
2018-11-19
最新回答 / qq_夏佐_0
看下我的代码:<!DOCTYPE HTML><html ><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>系好安全带,准备启航</title><script type="text/javascript"> function getScore() { var mydate = new Date()...
2018-11-19
最赞回答 / 慕侠2155777
a.style.color='red';a.setAttribute('style','color:red');color不是标签属性,style是属性,class是属性 color:red 这是style的内容 而且appendChild是把元素放入另个元素中,不是把属性放入元素中var attribute=document.createAttribute("style");//注意这里!!!attribute.value="color:blue";//这才是style属性的完整值;a.append...
2018-11-15