表单提交单击不在IE 10中工作

时间:2014-06-18 10:41:06

标签: jquery internet-explorer alertify

我在我的网站上使用alertify.js来生成警报。 在网站的工作中,存在这样的情况:用户可以从在线人员列表中点击姓名,并且将向该人发送通知。

当请求通知显示在另一端时,它上面有一个接受按钮。实际上是一个表单,当用户点击“开始”时,将打开一个新选项卡,其中几个参数作为POST方法发送。

我的Alertify.js代码是: -

<script type="text/javascript">

alertify.log("<?php echo $row['from']." want to talk to You !! <br> "?><div><form  action='chatIndex.php' method='POST' target='_blank'><input type='hidden' name='not_no' value='<?php echo $row['no']?>'><input type='hidden' name='not_from' value='<?php echo $row['from']?>'><input type='submit' style='float:left' value='Start' /></div>");

</script>

这在Chrome,Firefox中运行良好,但在IE 10中无效。 我也使用这些元标记在IE 10中正确使用Jquery

<meta http-equiv="x-ua-compatible" content="IE=9" >
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="x-ua-compatible" content="IE=EmulateIE9">

1 个答案:

答案 0 :(得分:0)

添加此项(忘记添加IE = 10):

<meta http-equiv="X-UA-Compatible" content="IE=10" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" />