jquery popup只适用于ie而不是firefox

时间:2014-07-14 15:01:59

标签: javascript jquery popup

我有以下代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
        <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/themes/smoothness/jquery-ui.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/jquery-ui.min.js"></script>
<script type="text/javascript">
        $(document).ready(function () {
            $("#submit").click(function () {
                $("#dialog").dialog({modal: true, height: 590, width: 1005 });
            });
        });
    </script>
</head>

<body>
<a href="" id="submit">
<div id="dialog" title="Contact form">
   <p>appear now</p>
 </div>
</body>
</html>

当我运行此代码,即它工作正常,弹出窗口没问题。但是当我在firefox中运行它时,它只是刷新页面。任何人都知道如何解决这个问题及其发生的原因?

1 个答案:

答案 0 :(得分:1)

我看到了两件事

1)使用event.preventDefault

阻止链接默认行为(导航到href url,在本例中为当前页面)
$("#submit").click(function (e) {
    e.preventDefault():
    $("#dialog").dialog({modal: true, height: 590, width: 1005 });
});

2)您的a标记不正确,永不关闭。不确定这是复制粘贴错误还是真正的HTML。