日期:2014-05-17 浏览次数:20515 次
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript">
function js_createElement(){
var div = document.createElement('div');
div.innerHTML='test';
div.id = 'div_2';
div.onclick=function(){
alert(1);
}
document.getElementById('div1').appendChild(div);
}
window.onload = bestTd;
function bestTd(){
var best = document.getElementById('best');
js_createElement();
best.attachEvent('onclick',function(){
var div_2 = document.getElementById('div_2');
if(!!div_2){
if(div_2.style.display=='')
div_2.style.display='none';
else
div_2.style.display='';
}
});
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div id='div1'>
&nb