| xqd
@@ -175,21 +175,21 @@
|
|
|
tbox[1].style="display:none;"
|
|
|
tbox[2].style="display:none;"
|
|
|
var txt1 = document.getElementById("txt1");
|
|
|
- txt1.value = ttt;
|
|
|
+ txt1.value = ttt+'!';
|
|
|
console.log(txt1)
|
|
|
}else if(status==1){
|
|
|
tbox[1].style="display:auto;"
|
|
|
tbox[0].style="display:none;"
|
|
|
tbox[2].style="display:none;"
|
|
|
var txt2 = document.getElementById("txt2");
|
|
|
- txt2.value = ttt;
|
|
|
+ txt2.value = ttt+'!';
|
|
|
console.log(txt2)
|
|
|
}else{
|
|
|
tbox[1].style="display:none;"
|
|
|
tbox[0].style="display:none;"
|
|
|
tbox[2].style="display:auto;"
|
|
|
var txt3 = document.getElementById("txt3");
|
|
|
- txt3.value = ttt;
|
|
|
+ txt3.value = ttt+'!';
|
|
|
console.log(txt3)
|
|
|
}
|
|
|
}
|
| xqd
@@ -336,17 +336,14 @@
|
|
|
<div class="tanbox">
|
|
|
<div style="width: 20px;height: 20px;text-align: center;position: absolute;top: -5px;right: -5px;background: #000;font-weight:700;color:#fff;border-radius: 20px;" onclick="closebox()">X</div>
|
|
|
<div class="status b0">
|
|
|
- <text class="title">提交失败!!</text>
|
|
|
- <input id="txt1" style="font-size: 10px;color: #999;border:none;text-align: center;width: 100%;" type="text" disabled></input>
|
|
|
+ <text id="txt1" class="title"></text>
|
|
|
</div>
|
|
|
<div class="status b1">
|
|
|
- <text class="title">提交成功!!</text>
|
|
|
- <input id="txt2" style="font-size: 10px;background: #fff; border:none;text-align: center;width: 100%;" type="text" value="" disabled/>
|
|
|
+ <text id="txt2" class="title"></text>
|
|
|
<button class="btn btn-default" id="yeah" type="button" onclick="thebtn(this)">下一页!</button>
|
|
|
</div>
|
|
|
<div class="status b2">
|
|
|
- <text class="title">下载****!!</text>
|
|
|
- <input id="txt3" style="font-size: 10px;background: #fff; border:none;text-align: center;width: 100%;" type="text" value="" disabled/>
|
|
|
+ <text id="txt3" class="title"></text>
|
|
|
<button class="btn btn-default" id="next" type="button" onclick="thebtn(this)">下一页!</button>
|
|
|
<button class="btn btn-default" id="download" type="button" onclick="thebtn(this)">下载!</button>
|
|
|
</div>
|