已采纳回答 / amok
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openWindow(){ var msg = co...
2017-02-10
已采纳回答 / 好生气哦
在style里写.p{color:red;fontSize:20;backgroundColor:blue;}script中mychar.className="p";
2017-02-09
已采纳回答 / 叶雪松
我给你改过了,你括号没对,,,无语<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openWindow(){ ...
2017-02-09
已采纳回答 / qq__5509
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" Content="text/html; charset=utf-8" /><title>javascript</title><style type="text/css">body{font-size:12px;}#txt{ height:400px; width:600px; border...
2017-02-09
已采纳回答 / 秦家小小神
“结果”后面+的是document.getElementById("id")获取的整个元素,document.getElementById("id").innerHTML才能获取元素内容
2017-02-06
已采纳回答 / 金风玉露亦相逢
先判断再打开输入框 function openWindow(){ var message=confirm("是否打开"); if(message==true){ var mypro=prompt("确定打开的网址","http://www.imooc.com/") if(...){ }else{ } }
2017-02-05
已采纳回答 / 暗影殘殤Jack3477619
不需要输出mywin变量你在执行window.open("******");的时候就会打开你指定的网址,然后将该窗口对象赋值给变量mywin
2017-02-05
已采纳回答 / qq_黄前久美子_04062299
=是赋值 == 是判断如 a = k ; 是将 k的值赋给a而 a == k; 是判断a和k是否相等,如果相等返回true,不相等返回false== 一般用在if 或者while这种判断和循环语句中。比如 if (a == k){ a = a + k;}加油学习哦!
2017-02-05