Update classic.html
parent
855a805f29
commit
a9f3629748
|
@ -659,18 +659,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
<!--ShowThumbnailsEnd-->
|
<!--ShowThumbnailsEnd-->
|
||||||
function CopyAllDownloadUrl(str) {
|
|
||||||
var tmptextarea=document.createElement('textarea');
|
|
||||||
document.body.appendChild(tmptextarea);
|
|
||||||
tmptextarea.setAttribute('style','position:absolute;left:-100px;width:0px;height:0px;');
|
|
||||||
document.querySelectorAll(str).forEach(function (e) {
|
|
||||||
tmptextarea.innerHTML+=e.href+"\r\n";
|
|
||||||
});
|
|
||||||
tmptextarea.select();
|
|
||||||
tmptextarea.setSelectionRange(0, tmptextarea.value.length);
|
|
||||||
document.execCommand("copy");
|
|
||||||
alert(tmptextarea.innerHTML+"<!--constStr@Success-->");
|
|
||||||
}
|
|
||||||
<!--MorePageStart-->
|
<!--MorePageStart-->
|
||||||
function nextpage(num) {
|
function nextpage(num) {
|
||||||
document.getElementById('pagenum').value=num;
|
document.getElementById('pagenum').value=num;
|
||||||
|
@ -777,6 +765,18 @@
|
||||||
location.href=location.href;
|
location.href=location.href;
|
||||||
}
|
}
|
||||||
<!--WriteTimezoneEnd-->
|
<!--WriteTimezoneEnd-->
|
||||||
|
function CopyAllDownloadUrl(str) {
|
||||||
|
var tmptextarea=document.createElement('textarea');
|
||||||
|
document.body.appendChild(tmptextarea);
|
||||||
|
tmptextarea.setAttribute('style','position:absolute;left:-100px;width:0px;height:0px;');
|
||||||
|
document.querySelectorAll(str).forEach(function (e) {
|
||||||
|
tmptextarea.innerHTML+=e.href+"\r\n";
|
||||||
|
});
|
||||||
|
tmptextarea.select();
|
||||||
|
tmptextarea.setSelectionRange(0, tmptextarea.value.length);
|
||||||
|
document.execCommand("copy");
|
||||||
|
alert(tmptextarea.innerHTML+"<!--constStr@Success-->");
|
||||||
|
}
|
||||||
<!--UploadJsStart-->
|
<!--UploadJsStart-->
|
||||||
function uploadbuttonhide() {
|
function uploadbuttonhide() {
|
||||||
document.getElementById('upload_btns').style.display='none';
|
document.getElementById('upload_btns').style.display='none';
|
||||||
|
|
Loading…
Reference in New Issue