当前位置: 代码迷 >> ASP >> ~asp innerHTML为什么不生效
  详细解决方案

~asp innerHTML为什么不生效

热度:36   发布时间:2012-12-30 10:43:15.0
十万火急~asp innerHTML为什么不生效
不想用js onclick事件,想直接通过ASP response.write输出

<%response.Write("<script>document.getElementById('OK').innerHTML='<span style='color:#00F; font-weight:bold;'>OK</span>'</script>")%>
<span id="OK"></span>

------解决方案--------------------
<span id="OK"></span>
<%response.Write("<script>document.getElementById('OK').innerHTML='<span style=\'color:#00F; font-weight:bold;\'>OK</span>';</script>")%>

引号错误。
  相关解决方案