最新回答 / qq_慕用402515
function resettext(){ var mychose = confirm(); if(mychose==true){ mydiv.removeAttribute("style"); }} //差一个大括号
2019-06-23
最新回答 / 看到我请叫我滚去学习
<!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:#3...
2019-06-22
已采纳回答 / HAHAXIAOHONGSHU
第一:prompt这个返回的值不是true或false,返回的是null或非空,所以判断语句中b==true就是错的;第二:打开窗口语句中的c从哪来的,并且单引号没有,除此之外,打开的窗口是新窗口还是原有窗口也没写
2019-06-21
已采纳回答 / Code小白k1
本人理解 测试过应该是对的
window.open(new2,"_blank",width=400,height=500,menubar=no,toolbar=no); window.open(new2,"_blank",width=400,height=500,"menubar=no,toolbar=no");//你丢双引号了 主要是下面的问题
return new2 //执行到这一行意味着你将会返回不会继续执行本程序块下面语句
2019-06-20
//定义"取消设置"的函数
function removeSetUp(){
let remove=confirm("你要取消设置吗");
if(remove==true){
let mytxt=document.getElementById("txt");
mytxt.removeAttribute("style");
//txt.style="txt"; 用这个更简单
}
else{
alert("未取消");
}
}
function removeSetUp(){
let remove=confirm("你要取消设置吗");
if(remove==true){
let mytxt=document.getElementById("txt");
mytxt.removeAttribute("style");
//txt.style="txt"; 用这个更简单
}
else{
alert("未取消");
}
}
function openWindow(){
let open=confirm("是否打开新窗口?");
if(open==true){
let sure=prompt("确定打开的网址,默认为 http://www.imooc.com/");
window.open('http://www.imooc.com','_blink','width=400','height=500','top=100','left=0','menubar=no','toolbar=no')
}
else{
}
}
let open=confirm("是否打开新窗口?");
if(open==true){
let sure=prompt("确定打开的网址,默认为 http://www.imooc.com/");
window.open('http://www.imooc.com','_blink','width=400','height=500','top=100','left=0','menubar=no','toolbar=no')
}
else{
}
}
已采纳回答 / 慕田峪347267
Javascript 中只能在 HTML 输出流中使用 document.write,在文档已加载后使用它(比如在函数中),会覆盖整个文档。HTML 输出流:当前数据形式是 HTML 格式的数据,这部分数据正被导出、传输或显示,所以称为”流“。
2019-06-18
最新回答 / 生活不知眼前的苟且还有车和房子要买
返回初始状态就是,要取消你一开始设置的颜色、宽高等属性用系统函数:Object.removeAttribute('style')
2019-06-16