已采纳回答 / hc1125
js 执行时先解析function定义的函数,但是解析到一半的出错了,相当于<script>中的代码没有解析完成,点击的时候就找不到所要执行的函数了
2019-08-07
其他功能:
function changeColor(){
text.style.color="blue";
}
//定义"改变宽高"的函数
function changeWAndH(){
text.style.width="100";
text.style.height="200";
}
//定义"隐藏内容"的函数
function hide(){
text.style.display="none";
}
//定义"显示内容"的函数
function display(){
text.style.display="block";
}
function changeColor(){
text.style.color="blue";
}
//定义"改变宽高"的函数
function changeWAndH(){
text.style.width="100";
text.style.height="200";
}
//定义"隐藏内容"的函数
function hide(){
text.style.display="none";
}
//定义"显示内容"的函数
function display(){
text.style.display="block";
}
//全局变量,读取txt对象
var text = document.getElementById("txt");
//定义"取消设置"的函数
function cancel(){
var is = confirm("确认取消设置?");
if(is==true){
text.removeAttribute("style");
}
}
var text = document.getElementById("txt");
//定义"取消设置"的函数
function cancel(){
var is = confirm("确认取消设置?");
if(is==true){
text.removeAttribute("style");
}
}
function openWindow(){
var op=confirm("确定打开?");
if(op==true){
var website=prompt("输入网站内容","http://www.imooc.com/");
window.open(website,'_blank','width=900,height=500,menubar=no,toolbar=no');
}
}
var op=confirm("确定打开?");
if(op==true){
var website=prompt("输入网站内容","http://www.imooc.com/");
window.open(website,'_blank','width=900,height=500,menubar=no,toolbar=no');
}
}
最新回答 / qq_梁淙泽_ivwKNQ
用var定义的变量为局部变量,不用var修饰才为全局变量;var mydiv = document.getElementById("txt");你把这里的var去掉试试; 但是良好的代码风格里面,你最好加上var,也就是再函数里面定义变量,这样以后往回看就不会很迷糊了
2019-08-04
最赞回答 / 慕仔3515669
可以将alert替换成return false;来达到按下取消键无操作的想法,我的代码如下<!DOCTYPE html><html><head><title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function ...
2019-08-02