最新回答 / freelee
function q(){ var b=confirm("是否取消设置?"); if(b==ture) {a.removeAttribute("style");};//你的代码变量后多了 ".style".
2016-03-24
最新回答 / 忆清水
<script>document.getElementById("你想要改的字体的ID名").style.fontSize = "10px"; </script>也可以这样在js中修改
2016-03-24
最新回答 / 读者123
缺少了:<body><input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" /></body>
2016-03-23
最新回答 / 天蝎座麦控
你的function函数没有写,你看下就可以知道,<input type="button" value="新窗口打开网站" onclick="openWindow()" /> 这行代码中,后面onclick中引用的是openWindow函数,你上面没有这个函数,当然就打不开啦!下面贴上我的代码吧!<!DOCTYPE html><html> <head> <title> new document </title> <m...
2016-03-23
最赞回答 / SingKa
<!DOCTYPE HTML><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>innerHTML</title> <script type="text/javascript"> function openWindow() { var messag...
2016-03-23