我有行,我需要动态附加控件。它的代码如下
<script type="text/javascript">
function AddRowContent()
{
//Here trRow is a id of row for which I need to append the data.
var d=document.getElementById("trRow");
d.innerHTML="<td>Aliases</td>";
}
</script>
代码在其他浏览器中运行良好,但在 Internet Explorer 中无法正常运行。请让我知道解决方案或更好的方法来做到这一点。