兼容性注释
在 HTML 4.01 中,不赞成使用 form 元素的 target 属性;在 XHTML 1.0 Strict DTD 中,不支持该属性。
语法
<form target="value ">
属性值
值 | 描述 |
---|---|
_blank | 在新窗口中打开。 |
_self | 默认。在相同的框架中打开。 |
_parent | 在父框架集中打开。 |
_top | 在整个窗口中打开。 |
framename | 在指定的框架中打开。 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>formtarget.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=GB18030">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
这是一个form target 属性的Test </pr>
<form action="test1.html" method="post" name="sendForm" target="hiddenFrame" >
<input name="fullpath" type="hidden">
<input name="itemname" type="hidden">
<input name="command" type="hidden">
<input name="other" type="hidden">
<input type="submit" name="submit" id="submit" value="submit">
</form>
<iframe name="hiddenFrame" width="0" height="0"></iframe>
<iframe name="hiddenFrame" width="0%" height="0%" frameborder="0" marginwidth="0" marginheight="0" src="test1.html"></iframe>
</body>
</html>