HTML <object> 设置 <title> 为内页标题
HTML <object> set <title> to inner page title
我有一个页面 (page1.html) 通过 <object>
标签请求其他页面,如下所示:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<object data="www.anotherdomain.com/page2.html"></object>
</body>
</html>
现在,在page2.html中,有一个动态标题属性,我怎样才能保留这个标题并将其显示为page1的标题?
我有一个页面 (page1.html) 通过 <object>
标签请求其他页面,如下所示:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<object data="www.anotherdomain.com/page2.html"></object>
</body>
</html>
现在,在page2.html中,有一个动态标题属性,我怎样才能保留这个标题并将其显示为page1的标题?