让javascript背后的代码在InternetExplorer8中工作

本文关键字:InternetExplorer8 工作 代码 javascript 背后 | 更新日期: 2023-09-27 18:27:18

在所有主要的现代浏览器中,我可以执行以下操作:

protected void Page_Load(object sender, EventArgs e)
{
    Page.ClientScript.RegisterClientScriptBlock(typeof(Page), Guid.NewGuid().ToString(), "alert('Show on pageload')", true);
}

当我打开页面时,它会弹出一个Javascript,上面写着"在页面加载时显示"。

在Internet Explorer 8中,弹出窗口不会出现。我能做些什么来使Javascript在IE8中工作?

让javascript背后的代码在InternetExplorer8中工作

基本上,I.E8中的alert函数应该没有任何问题。

在您的IE浏览器中->右键单击->选择View Source,然后查看真正生成的脚本是什么。

相关文章:
  • 没有找到相关文章