Skip to content

Instantly share code, notes, and snippets.

@rocka
Created March 31, 2017 03:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rocka/c3138d73d4ba901531a580be1d6363de to your computer and use it in GitHub Desktop.
Save rocka/c3138d73d4ba901531a580be1d6363de to your computer and use it in GitHub Desktop.
calc total credit in zfjw
javascript:(function(){
var total=0;
[].forEach.call(
document.getElementById('iframeautoheight').contentDocument.getElementsByClassName('datelist')[0].rows,
(e, i) => i ? total+=+e.cells[5].innerText : null
);
alert(`Total credit is ${total}`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment