document.write("hello world"); //单行注释
/*
今天的天气真好啊
我要努力学习javascript
*/
/*
今天的天气真好啊
我要努力学习javascript
*/
2019-07-13
while(true){
alert("hello")
}
千万不要写死循环,不然就要关网页重开!!!
alert("hello")
}
千万不要写死循环,不然就要关网页重开!!!
2019-07-11
第五,定义“取消设置”的函数,无反应的原因
用className 设置并使用con或txt的同学们,我感觉没反应的原因是(本人也是刚入门,大家可以一起学,一起讨论):源代码中css样式用的是ID选择器而不是类选择器。className属性是控制类名,获取元素的class 属性,所以没有反应。
用className 设置并使用con或txt的同学们,我感觉没反应的原因是(本人也是刚入门,大家可以一起学,一起讨论):源代码中css样式用的是ID选择器而不是类选择器。className属性是控制类名,获取元素的class 属性,所以没有反应。
//定义"取消设置"的函数
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{
}
}
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
2019-06-14
var ope=confirm('是否打开新窗口?');
if(ope==true)
{
var win=prompt('输入网址');
if(win!=null)
{ window.open('win,'_blank','width=400','height=500','menubar=no','toolbar=no');
}
}
else{
}
if(ope==true)
{
var win=prompt('输入网址');
if(win!=null)
{ window.open('win,'_blank','width=400','height=500','menubar=no','toolbar=no');
}
}
else{
}