另一种形式的按钮在IE8,IE10中不起作用?

时间:2014-02-07 13:53:06

标签: html forms button internet-explorer-8

我想使用表单中的按钮使用属性“form”提交另一个表单。它在Firefox和Chrome中运行良好,但它在IE10和IE8中不起作用。

我还需要使用按钮的属性'形成'。虽然它可以在IE10中运行,但它在IE8中不起作用。

当点击相关按钮时,我还需要获得$ _POST ['outside']和$ _POST ['export']。

以下是代码。您可以请专家提供指导吗?谢谢。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--meta http-equiv="Content-Type" content="text/html; charset=utf-8" /-->
<meta http-equiv="Content-Type" content="image/png;" />
<title>US Mian</title>
</head>
<body>

<form action="http://www.apple.com" method="post"  name="form1"  id="form1" style="border:1px solid red; margin:30px;" >
   <label> Last Name: </label>
   <input type="text" name="lastname" value="" /><br>
   <button  type="submit"   name="inside"  form="form1" onclick=""> button_inside - Go to Apple</button>
</form>


<h2> The following two buttons do not work in IE8. </h2>
<form action="http://www.cnn.com" method="post"  name="form2"  id="form1" style="border:1px solid red; margin:30px;" >
   <button type="submit"   name="outside"  form="form1" onclick=""> button_otherform - Go to Apple</button><br>
   <button  type="submit"   name="export" formaction="http://www.yahoo.com" fromtarget="export_dummy_iframe2" />button-using-formaction: Go to Yahoo</button>
</form>       

<iframe style="display:none;" name="export_dummy_iframe2">  </iframe>

</body>
</html>

0 个答案:

没有答案