我在 Windows 8.1 Preview 的 IE 11 中得到空白页。在检查页面后,我认为以下代码可能是罪魁祸首,因为在这些行之后没有进一步的行显示调试器窗口,所以代码在此行之后中断。
即 11
<!-- <form name="aspnetForm" method="post" action="Register" id="aspnetForm">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTkwNDQ3O
我在 Windows 8.1 Preview 中的 Chrome 版本 29.0.1547.57 m 中尝试了相同的页面它在那里工作正常,我得到以下代码。
铬合金
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
-->