📄 js.js
字号:
function PlayList() {
lbsong=window.open('about:blank','lbsong','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,top=210,left=158,width=420,height=227');
}
function PlayIt(URL){
lbsong=window.open(URL,'lbsong', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=420,height=227,top=210,left=158');
}
function Download(URL){
download=window.open(URL,'download', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=420,height=247,top=210,left=158');
}
function showLyric(URL){
lyric=window.open(URL,'lyric', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=400,height=400,top=110,left=158');
}
function musicbox() {
window.open('about:blank','musicbox','scrollbars=yes,resizable=no,width=460,height=300,menubar=no,top=200,left=200');
}
function CheckOthers(form) {
for (var i=0;i<form.elements.length;i++) {
var e = form.elements[i];
// if (e.name != 'chkall')
if (e.checked==false) {
e.checked = true;// form.chkall.checked;
} else {
e.checked = false;
}
}
}
function CheckAll(form) {
for (var i=0;i<form.elements.length;i++) {
var e = form.elements[i];
// if (e.name != 'chkall')
if (e.name != 'webmusic[]') {
e.checked = true// form.chkall.checked;
}
}
}
function WebMusic(form,submitform) {
var postString = "";
for (var i=0;i<form.elements.length;i++) {
var e = form.elements[i];
if (e.name == 'webmusic[]' && e.checked == true) {
if (postString=="") {
postString = eval(e.value);
} else {
postString = postString + ',' + eval(e.value);
}
}
}
window.open('about:blank','webmusic_win','scrollbars=no,resizable=no,width=0,height=0,menubar=no,top=10000,left=10000');
submitform.id.value = postString;
submitform.submit();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -