| xqd
@@ -175,21 +175,21 @@
|
|
|
tbox[1].style="display:none;"
|
|
|
tbox[2].style="display:none;"
|
|
|
var txt1 = document.getElementById("txt1");
|
|
|
- txt1.value = ttt+'!';
|
|
|
+ txt1.innerHTML = 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.innerHTML = 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.innerHTML = ttt+'!';
|
|
|
console.log(txt3)
|
|
|
}
|
|
|
}
|
| xqd
@@ -340,11 +340,11 @@
|
|
|
</div>
|
|
|
<div class="status b1">
|
|
|
<text id="txt2" class="title"></text>
|
|
|
- <button class="btn btn-default" id="yeah" type="button" onclick="thebtn(this)">下一页!</button>
|
|
|
+ <button class="btn btn-default" id="yeah" type="button" onclick="thebtn(this)">查看详情!</button>
|
|
|
</div>
|
|
|
<div class="status b2">
|
|
|
<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="next" type="button" onclick="thebtn(this)">查看详情!</button>
|
|
|
<button class="btn btn-default" id="download" type="button" onclick="thebtn(this)">下载!</button>
|
|
|
</div>
|
|
|
</div>
|