为什么IE8无法使用document.title =“test title”;
更改文档标题答案 0 :(得分:2)
以下为我的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 onload="changeTitle()">
</body>
</html>
答案 1 :(得分:1)
真的?使用document.title = 'Foo Bar';
一直对我有用。你的脚本是否正在执行?
请在document.title = ...
:
alert('I work.');
如果您没有收到警告框,则您的脚本甚至无法运行。
答案 2 :(得分:0)
发现了这个: http://support.microsoft.com/kb/296113
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JAVASCRIPT">
function runTest()
{
var s ="We should set this as the new title"
var mytitle = document.createElement("TITLE");
mytitle.innerHTML = s;
alert(s);
document.documentElement.childNodes[0].appendChild(mytitle);
}
function fix()
{
var s = "Now we change the title";
alert(s);
document.title = s;
}
</SCRIPT>
</HEAD>
<BODY>
<input type="button" value="Problem" onclick="runTest()"/>
<input type="button" value="Workaround" onclick="fix()"/>
</BODY>
对我来说,这适用于IE 9,8,7
也许你不打电话给你的功能,或者有些东西不起作用。
document.title必须有效!