我想要一个输出:
<input type="text" onclick="alert('\"')" />
但这不起作用:
Response.Write("<input type=""text"" onclick=""alert('\""')"" />")
它给了我
<input type="text" ')"="" onclick="alert('\">
答案 0 :(得分:-1)
这将输出您想要的内容:
Response.Write("<input type=""text"" onclick=""alert('\x22')"" />")