考慮下面的代碼:<TR>標籤未訂閱事件
<!DOCTYPE html> <!-- HTML5 -->
<html>
<head>
<meta http-equiv="Expires" content="Fri, Jan 01 1900 00:00:00 GMT">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="content-language" content="en">
<title>Untitled</title>
<script type='text/javascript'>
function createTableRow() {
var tr = document.createElement("tr");
var strWork = "<tr onmouseover='this.style.cursor=\"pointer\";'";
strWork += " onmouseout='this.style.cursor=\"auto\";'";
strWork += " onclick='ShowClick(this);'";
strWork += " id='TestCell'><td>Test!</td></tr>";
alert(strWork);
tr.outerHTML = strWork;
return tr;
}
function BuildTable() {
var table = document.createElement("table");
table.appendChild(createTableRow());
return table;
}
function ShowClick(obj) {
alert(obj.id);
}
</script>
</head>
<body onload='alert(BuildTable().outerHTML);'>
</body>
</html>
第一個「警告」對話框中顯示的標籤,我想形成它,但是,在「的onload =警報」行返回結果「 <表> < tr> </tr> </table>「。
我在做什麼錯?爲什麼這些事件不與TR標籤綁定?
另外,我想補充一點,我最初分配使用JavaScript的事件,即:
tr.onclick = function() { ShowClick(this); };
但有完全相同的結果...
我真的不明白這一點,我無法在任何地方找到任何有關該問題的討論......任何幫助將不勝感激!
請學習在現代瀏覽器中使用'console.log()'。 – 2012-08-20 01:12:30
@ JaredFarrish--請學會寬容使用的瀏覽器。 – RobG 2012-08-20 01:52:03
@RobG - 哈哈,有趣的東西。除非你認真,在這種情況下,你呢? – 2012-08-20 01:53:35