发布网友 发布时间:2024-10-24 14:59
共2个回答
热心网友 时间:2024-11-09 10:19
1、你可以用空格或多个表格纵向排列实现;
2、框架不能重叠,如果要实现重叠效果就要用到多个DIV了,设置一下样式style="position:absolute; z-index:1;"
3、要用javascript实现,如:
<script>
leaveSeconds=10;//剩余秒数
function showTimeBefore(){
var tag = document.getElementById("apply");
tag.innerText="我同意 "+leaveSeconds;
leaveSeconds=leaveSeconds-1;
if(leaveSeconds>0){
setTimeout(showTimeBefore,1000)
}
else{
tag.innerText = "我同意";
tag.disabled = false;
}
}
setTimeout(showTimeBefore,1000); //主要靠这个函数 设置时间间隔 每1000毫秒调用函数一次
</script>
<input name="apply" type="button" class="btn_heikuang_big" id="apply" value="我同意 10" onclick="window.location.href='member.steptow.asp'" disabled/>
热心网友 时间:2024-11-09 10:20
现在做网站用框架的很少啦。。