MediaWiki:Mobile.js:修订间差异
跳转到导航
跳转到搜索
(建立内容为“→这里的任何JavaScript将为使用移动版网站的用户加载: function cleartext(){ document.getElementById('t1').style.display = 'none'; docu…”的新页面) |
无编辑摘要 |
||
第1行: | 第1行: | ||
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */ |
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */ |
||
function cleartext(){ |
function cleartext(){ |
||
for(var i=0;i<t1.length;i++){ |
|||
⚫ | |||
t1[i].style.display = 'none'; |
|||
t2[i].style.display = 'none'; |
|||
t3[i].style.display = 'none'; |
|||
t4[i].style.display = 'none'; |
|||
⚫ | |||
} |
|||
} |
} |
||
window.onload = function() { |
window.onload = function() { |
||
document.getElementById("b1").onclick = function() { |
document.getElementById("b1").onclick = function() { |
||
cleartext(); |
cleartext(); |
||
for(var i=0;i<t1.length;i++){ |
|||
t1[i].style.display = 'block'; |
|||
} |
|||
} |
} |
||
document.getElementById("b2").onclick = function() { |
document.getElementById("b2").onclick = function() { |
||
cleartext(); |
cleartext(); |
||
for(var i=0;i<t1.length;i++){ |
|||
t2[i].style.display = 'block'; |
|||
} |
|||
} |
} |
||
document.getElementById("b3").onclick = function() { |
document.getElementById("b3").onclick = function() { |
||
cleartext(); |
cleartext(); |
||
for(var i=0;i<t1.length;i++){ |
|||
t3[i].style.display = 'block'; |
|||
} |
|||
} |
} |
||
document.getElementById("b4").onclick = function() { |
document.getElementById("b4").onclick = function() { |
||
cleartext(); |
cleartext(); |
||
for(var i=0;i<t1.length;i++){ |
|||
t4[i].style.display = 'block'; |
|||
} |
|||
} |
} |
||
document.getElementById("b5").onclick = function() { |
document.getElementById("b5").onclick = function() { |
||
cleartext(); |
cleartext(); |
||
for(var i=0;i<t1.length;i++){ |
|||
t5[i].style.display = 'block'; |
|||
} |
|||
} |
} |
||
} |
} |
2022年1月2日 (日) 23:17的版本
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
function cleartext(){
for(var i=0;i<t1.length;i++){
t1[i].style.display = 'none';
t2[i].style.display = 'none';
t3[i].style.display = 'none';
t4[i].style.display = 'none';
t5[i].style.display = 'none';
}
}
window.onload = function() {
document.getElementById("b1").onclick = function() {
cleartext();
for(var i=0;i<t1.length;i++){
t1[i].style.display = 'block';
}
}
document.getElementById("b2").onclick = function() {
cleartext();
for(var i=0;i<t1.length;i++){
t2[i].style.display = 'block';
}
}
document.getElementById("b3").onclick = function() {
cleartext();
for(var i=0;i<t1.length;i++){
t3[i].style.display = 'block';
}
}
document.getElementById("b4").onclick = function() {
cleartext();
for(var i=0;i<t1.length;i++){
t4[i].style.display = 'block';
}
}
document.getElementById("b5").onclick = function() {
cleartext();
for(var i=0;i<t1.length;i++){
t5[i].style.display = 'block';
}
}
}