我是 JS 新手,正在学习 JON DUCKETT 的 JAVASCRIPT 和 JQUERY 书籍。
我对有关document.title使用的问题感到震惊
我写了一个关于如何使用文档对象的代码。
除标题外,每个属性和方法都在工作
我附上了一个代码,请看一下并帮助我如何使title 属性正常工作。
代码如下:
<!DOCTYPE html>
<html>
<head>
<title>Hammer</title>
</head>
<body>
<h1>THANOS</h1>
<div id="tony"></div>
</body>
<script>
var lord = "<p> The title of the page is :" + document.title + "</p>";
lord += "<p>address of the page is : " + document.URL + "</p>";
lord += " <p>Last modified is : " + document.lastModified + "</p>";
var man = document.getElementById("tony");
man.innerHTML = lord;
</script>
</html>
输出:灭霸
The title of the page is :
address of the page is : https://fiddle.jshell.net/_display/
Last modified is : 07/14/2018 10:28:57
标题不显示为什么?
代码中的+=是什么意思请帮忙
抱歉,我没有 10 的声誉来发布我必须编写此代码的图像。