编程语言
首页 > 编程语言> > javascript-document.title问题ie8

javascript-document.title问题ie8

作者:互联网

IE8为什么无法使用document.title =“ test title”更改文档标题?

解决方法:

以下是我的IE8作品.但是我确实得到了ActiveX安全弹出窗口,因此也许您的IE8并未设置为提示这些问题,而只是拒绝编写脚本.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Test</title>
<script type="text/javascript">
    function changeTitle() {
        document.title = 'Foobar';
    }
</script>
</head>
<body onl oad="changeTitle()">
</body>
</html>

标签:internet-explorer,title,javascript,internet-explorer-8
来源: https://codeday.me/bug/20191208/2092954.html