最新回答 / qq_慕运维1058582
你上边新建的变量后边弹出对话框的可以用confirm()不需要输入东西,这个点了确定之后返回的是true,所以你下边判断直接判断你的变量是不是true就行了,是就直接打开就OK了
2020-02-12
已采纳回答 / 帝普一世
你前面的代码,点击按钮后,就给元素添加了style样式,比如,点击改变颜色按钮后,代码就变成了<...code...>也就是添加了style="color:red",其它几个按钮也是一样。那么最后这个取消按钮,removeAttribute("style");就是清除style样式
2020-02-11
function openwindow(){
var url = 'http://baidu.com';
var conBox = confirm('确认打开窗口吗?');
if (conBox == true) {
var proBox = prompt('请输入要打开的网址',url);
if (proBox != null) {
window.open(url,'_blank',"width=400,height=500,menubar=no,toolbar=no");
}
}else{
alert('退出成功');
}
}
var url = 'http://baidu.com';
var conBox = confirm('确认打开窗口吗?');
if (conBox == true) {
var proBox = prompt('请输入要打开的网址',url);
if (proBox != null) {
window.open(url,'_blank',"width=400,height=500,menubar=no,toolbar=no");
}
}else{
alert('退出成功');
}
}
已采纳回答 / 清风丿自在
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>函数调用</title> <script type="text/javascript"> function contxt() //定义函数 { alert("哈哈,调用函数了!")...
2020-02-08
最赞回答 / Bugstars
代码没有问题,可能出现的问题:查看下,输入的网址是否正确,是否加上http://查看下浏览器是否拦截了弹出框(目前大多数浏览器都会自动拦截弹出框,为了安全起见)
2020-02-05
function openWindow()
{
var newwindow = confirm("xxx");
if(newwindow == true)
{
var url = prompt("xxx:","http://www.imooc.com");
if(url == "http://www.imooc.com")
{ window.open('http://www.imooc.com/','_blank','width=400,heigth=500,menubar=no,toolbar=no');}}
{
var newwindow = confirm("xxx");
if(newwindow == true)
{
var url = prompt("xxx:","http://www.imooc.com");
if(url == "http://www.imooc.com")
{ window.open('http://www.imooc.com/','_blank','width=400,heigth=500,menubar=no,toolbar=no');}}