在脚本中有
<html>
<body>
<div id="m"></div>
</body>
</html>
在.cs中使用
Response.Write("<script>m.style.visibility='visible'</script>");
运行网页出错提示"m"未定义。
各位高手帮忙解决一下
还有在脚本中有
<html>
<body>
<script>
function mm()
{
}
</script>
<div id="m"></div>
</body>
</html>
在.cs中怎样使用
Response.Write("<script>...调用mm()啊?