Created
March 6, 2012 02:47
-
-
Save elleryq/1983067 to your computer and use it in GitHub Desktop.
續借學校圖書2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name continue my library books 2 | |
// @namespace idv.elleryq.library2 | |
// @description 續借學校圖書 | |
// @include http://192.192.83.170/webpac/member/MyLendList.jsp* | |
// ==/UserScript== | |
(function(){ | |
// search all button named 'formExport' and push to list. | |
var list = new Array(); | |
var list_len= 0; | |
var elements = document.getElementsByTagName("input"); | |
for(var start=0,end=elements.length;start!=end;start++) | |
{ | |
var name=elements[start].getAttribute("name"); | |
if (name=="formExport"){ | |
list[ list_len++ ] = elements[start]; | |
} | |
} | |
// Add new buttons to right of 'formExport' | |
for(var start=0, end=list.length;start!=end;start++ ) | |
{ | |
// The button for check all | |
var check_all_button = document.createElement("input"); | |
check_all_button.setAttribute("class", "allbtn" ); | |
check_all_button.setAttribute("type", "button"); | |
check_all_button.setAttribute("value", "Check all"); | |
check_all_button.setAttribute("name", "check_all_button"); | |
check_all_button.setAttribute("onclick", "javascript: var elements = document.getElementsByTagName(\"input\");for(var start=0,end=elements.length;start!=end;start++) { var name=elements[start].getAttribute(\"name\"); if( name && name==\"extendId\" ){ elements[start].checked=true; } }"); | |
// The button for uncheck all | |
var uncheck_all_button = document.createElement("input"); | |
uncheck_all_button.setAttribute("class", "allbtn" ); | |
uncheck_all_button.setAttribute("type", "button"); | |
uncheck_all_button.setAttribute("value", "Uncheck all"); | |
uncheck_all_button.setAttribute("name", "uncheck_all_button"); | |
uncheck_all_button.setAttribute("onclick", "javascript: var elements = document.getElementsByTagName(\"input\");for(var start=0,end=elements.length;start!=end;start++) { var name=elements[start].getAttribute(\"name\"); if( name && name==\"extendId\" ){ elements[start].checked=false; } }"); | |
var parent = list[start].parentNode; | |
parent.appendChild( check_all_button ); | |
parent.appendChild( uncheck_all_button ); | |
} | |
})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name fix_mylendlist_pagesize | |
// @namespace idv.elleryq.library2 | |
// @include http://192.192.83.170/webpac/member/personal.jsp | |
// ==/UserScript== | |
(function(){ | |
var elements = document.getElementsByTagName("a"); | |
for(var start=0,end=elements.length;start!=end;start++) | |
{ | |
var href=elements[start].getAttribute("href"); | |
console.log( href ); | |
if (href=="MyLendList.jsp"){ | |
// We need more pageSize. | |
elements[start].setAttribute( "href", href + "?pageSize=30" ); | |
} | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment