我真的不知道为什么,但是当我尝试将iFrame显示为谷歌浏览器和Safari时它不起作用。
chrome中的纯源代码如下所示:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<iframe width="560" height="349" src="http://www.youtube.com/embed/uqfY3xnv6sE" frameborder="0" allowfullscreen></iframe> <form name="submitForm" method="get" action="myPage.php">
<label>
<input type="text" name="url"/>
</label>
<input type="submit" name="button" value="Submit"/>
</form>
</body>
</html>
但是当我'检查chrome中的元素'时,结果就是:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<iframe width="560" height="349" src="" frameborder="0" allowfullscreen=""></iframe> <form name="submitForm" method="get" action="myPage.php">
<label>
<input type="text" name="url">
</label>
<input type="submit" name="button" value="Submit">
</form>
</body></html>
请注意,“inspect element”中绝对没有“src”。 Firefox会显示iframe。