我正在使用脚本使 html 中的表格可排序。脚本在这里 - http://www.kryogenix.org/code/browser/sorttable/。我希望在加载时自动单击对 html 表进行排序的文本。我使用的自动点击脚本是这个-
<head>
<script LANGUAGE='javascript'>
function autoClick(){
document.getElementById('sort').click();
}
</script>
</head>
<body onload="autoClick();">
<table><tr><th><p id="sort">Click here to sort the table</p></th>...
问题是这不起作用,我很困惑为什么这不起作用。
- - - - - - - - - - 编辑 - - - - - - - - -
对此感到抱歉,但实际上我在正文 onload 语句中输入了错误。因此我使用的脚本是正确的。