<html>
<body>
<h1>iframe sandbox 属性</h1>
<iframe src="/demo/iframe/iframe_sandbox_form.html" sandbox="">
<p>您的浏览器不支持 iframe。</p>
</iframe>
<p>“提交”按钮将在 iframe 中提交表单。</p>
<p>由于 sandbox 属性设置为空字符串(""),因此 iframe 中表单的提交将被阻止。</p>
<p>将“allow-forms”添加到沙箱属性中,可允许表单提交。</p>
</body>
</html>