Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑以下 HTML 代码:
<img/asimpletest/onerror=alert('Error') src=test />
我对/上面代码中的斜线感到非常困惑。使用垃圾代码/asimpletest/,网络浏览器(IE和Chrome)也可以弹出消息框“错误”。斜线和其中的内容有什么意义吗?
/
/asimpletest/
<img onerror=alert('Error') src=test />
当您必须关闭特定标签时,通常使用斜杠 / (我的意思是在 HTML 中):
<p align="center"> text </p>
在这种情况下,您的代码是错误的,因为您没有以正确的方式使用斜杠。看这里一个例子
<img src="image.gif" onerror="alert('Error')">
此外, /asimpletest/ 是无用的。去掉它。
/asimpletest/ 不添加任何内容
如果没有您所指的垃圾数据,这肯定会正常工作