var html = "<div>这就是标签字符串</div>"
第二步:
在html中的节点插入:
document.body.innerHTML = html
就完成了
要想用response.write输出html标签,首先要做如下设置:Response.ContentType = "text/plain"
Response.Charset = "UTF-8"
输出方法如下:
String strHtml="<img src=""image/win.gif"" width=""35"" height=""37"">"
response.write(strHtml)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)