HTMl是静态的啦,要通过服务器才能实现动态的数据交互效果。
例如用户每选择一次,就将数据传回给服务器数据库中,服务器再根据运算返回票数变动后的各数据表现(如进程条增加一定比例的长度和百分数增加等)
当然如果你只是想一次性显示最终首运派结果,可以用一个div包含另一个div实现悄谨静态效果:
<div style="width:400px;height:10px;background:#EDEDED;">
<div style="background:#FFED04;width:70px;height:10px;">者贺</div>
</div>
已经会了, 3Q
额,刚弄了下js:
<script language="javascript" type="text/javascript" defer>
window.onload=function(){
var obtn=document.getElementById('btn');
var opro=document.getElementById('pro');
var wid=70;
obtn.onclick=function(){
wid+=30;
opro.style.width=wid+'px';
}
}
</script>
HTML添加个按钮:
<div style="width:400px;height:10px;background:#EDEDED;">
<div id="pro" style="background:#FFED04;width:70px;height:10px;"></div>
</div>
<input id="btn" type="button" value="增加进程"/>