gpt4 book ai didi

javascript - HTML:从特定 iframe 本身中存在的文档设置 iframe 属性

转载 作者:行者123 更新时间:2023-11-28 09:53:28 25 4
gpt4 key购买 nike

我有一个 html 文件如下。我想从我的 title ifame html documet 中存在的文档更改“标题 iframe 的某些属性。但是我无法从 titleFrame iframe 中存在的 title.php 代码更改 iframe 属性。我该怎么做这个?

<style>
iframe
{
width: 100%;
border: 0;
}

#titleFrame
{
position: absolute;
height: 100%;
top: 0;
left: 0;
background-color: red;
}
</style>

<body>
<div class='myDiv'> </div>
<img class='myImg' src='image.jpg' />
<iframe src="src/title.php" id="titleFrame" name="titleFrame" scrolling="No" noresize="noresize" title="title" />
<iframe src="" id="mainFrame" name="mainFrame" scrolling="Auto" title="mainFrame" />
</body>

在 src/title.php 文件中:

<div class="titleDiv">
<span class='titleText'> Resource Management </span>
<span id='userNameDisp'> </span>
<input id='theTime' type=text value='' size=35 />
</div>
<?php
if(session_id() == '')
session_start();
if(isset($_SESSION['userName']))
{
echo "<script> ";
echo "$(\"#userNameDisp\").html(\"Welcome \"+\"".$_SESSION['userName']."<br/><span class='logOutClass'><a href='logout.php' target='mainFrame'> Logout </a> </span>\"); ";
echo "window.parent.document.getElementById('titleFrame').css('height','70px'); ";
echo "$('#titleFrame').css('background-color','#EFEFEF'); ";
echo "window.parent.document.getElementById('mainFrame').setAttribute('src','src/home.php'); ";
echo "</script></body> </html>";
return;
}

?>

最佳答案

下面的 javascript 代码用于更改父 iframe 属性。

echo "window.parent.document.getElementById('titleFrame').style.height='70px'; ";

关于javascript - HTML:从特定 iframe 本身中存在的文档设置 iframe 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24993991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com