已采纳回答 / jhzx
<!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 m...
2018-06-27
已采纳回答 / 慕先生9412342
a=window.open('http://www.imooc.com','_blank','widtn=600,height=400,top=100px,left=0px') 宽度的英文打错了
2018-06-27
已采纳回答 / qq_骑行夏威夷_1
没调用id,在函数里。如果你不调用id怎么显示?我给你一小段,你就明白了。function shen(){ n=document.getElementById("con"); n.style.color="red"; n.style.backgroudColor="blue";}
2018-06-23
已采纳回答 / 慕粉4310558
function openWindow(){ var world = window.confirm('请输入网址:'); if(world) { var home=window.prompt('请输入网址:','http://www.imooc.com/'); if(home !== null) { window.open(home,'_black','width=400,h...
2018-06-23
已采纳回答 / 慕粉4310558
function openWindow(){ var world = window.confirm('请输入网址:'); if(world) { var home=window.prompt('请输入网址:','http://www.imooc.com/'); if(home !== null) { window.open(home,'_black','width=400,h...
2018-06-23
已采纳回答 / 陈大隐
填这个 function Regain(){ if(confirm("是否取消设置")) { var id = document.getElementById("txt"); id.className ="txt"; } }
2018-06-18
已采纳回答 / 慕码人9206263
这个是跟浏览器有关的,跟你的代码没有关系。每个浏览器设置的效果不一样,就像你的一样的代码在不同的浏览器中显示出来的效果有时也会有区别的。甚至也跟系统有关。
2018-06-17