html添加 javascript进度条

我现在写了一个代码head><scripttype="text/javascript">functionconfirmDialog(){if(window.confirm... 我现在写了 一个代码head>
<script type="text/javascript">

function confirmDialog(){
if(window.confirm("请评良心选择,是请选择'确定',不是'取消'"))

alert("果然群众眼睛是雪亮的!");
else
alert("木马释放注入成功!!");
}

</head>
<body>
<form>
<input type="button" value="小楠是宇宙第一帅哥么?" onclick="confirmDialog()">
</form>
</body>

</html>
我想在 eals(取消)那行代码里添加上一个 执行进度条 应该怎么写?
展开
 我来答
俺啥都知道
推荐于2016-07-17 · TA获得超过298个赞
知道小有建树答主
回答量:291
采纳率:0%
帮助的人:236万
展开全部
看你这代码真够无聊的。。嘿嘿 我帮你写这代码更无聊。。(早饭午饭都没吃 饿的是在没心情工作了。。。就当KILL TIME吧)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
.holder{
position:absolute; border:solid #FF0000 1px; height:20px;
}
div .bar {
background-color:#003300; height:20px;
}
</style>
<script>

function confirmDialog(){
if(window.confirm("请评良心选择,是请选择'确定',不是'取消'"))

alert("果然群众眼睛是雪亮的!");
else
new ProgressBar();
}
function ProgressBar () {
this.holder = document.createElement('div');
this.bar = document.createElement('div');

this.holder.appendChild(this.bar);

this.holder.className = 'holder';
this.bar.className = 'bar';

this.bar.style.width = '0px';
this.holder.style.width = '100px';

var that = this;

this.show = function () {
var w = (window.innerWidth) ? window.innerWidth : (document.documentElement && document.documentElement.clientWidth) ? document.documentElement.clientWidth : document.body.offsetWidth; var h = (window.innerHeight) ? window.innerHeight : (document.documentElement && document.documentElement.clientHeight) ? document.documentElement.clientHeight : document.body.offsetHeight;
this.holder.style.top = h/2 + 'px';
this.holder.style.left = w/2 + 'px';
document.body.appendChild(this.holder);
this.timer = setInterval(this.grow, 100);
};
this.grow = function () {

var barWidth = parseInt(that.bar.style.width);
var holderWidth = parseInt(that.holder.style.width);

barWidth += 10;
barWidth = Math.min(barWidth, holderWidth);

that.bar.style.width = barWidth + 'px';
if (barWidth === holderWidth) {
clearInterval(that.timer);
document.body.removeChild(that.holder);
that.onEnd();
}
};
this.onEnd = function () {
alert("木马释放注入成功!!");
}
this.show();
}

</script>
</head>

<body>
<form>
<input type="button" value="小楠是宇宙第一帅哥么?" onclick="confirmDialog()">
</form>

</body>
</html>
(不用架框写起来好麻烦。。 不过超简单 就没加注释 多浏览器下测试通过了)
飞莎网络
2009-11-20 · TA获得超过332个赞
知道小有建树答主
回答量:490
采纳率:0%
帮助的人:407万
展开全部
你可以 设置一个div 和一个文本域
div 用来显示进度条
文本域 用来显示进度百分比

然后用for 做个循环
让div宽增加,让百分比改变。
看起来就是吓唬人的执行进度条
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ggxrx
2019-05-12 · 贡献了超过335个回答
知道答主
回答量:335
采纳率:25%
帮助的人:25万
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式