Skip to content

Instantly share code, notes, and snippets.

@binjoo
Created October 21, 2012 13:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save binjoo/3926914 to your computer and use it in GitHub Desktop.
Save binjoo/3926914 to your computer and use it in GitHub Desktop.
JAVASCRIPT:清空表格
/**清空表格**/
function clearLocationTable(){
var objTable = document.getElementById("locationTable");
var length = objTable.rows.length;
for (var i = 1; i<length; i++){
objTable.deleteRow(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment