jquery simplemodal close不会在firefox中工作

时间:2010-05-09 08:53:45

标签: firefox jquery-plugins

我正在使用jquery.simplemodal 1.3.5(我试过旧版本) 关闭按钮不会关闭Firefox中的模式(我试过IE,它工作正常) 这是我正在使用的测试页面:

<html>
<head>
    <title>Untitled Page</title>
    <style>
    #simplemodal-overlay {
   background-color:#000;
   cursor:wait;
 }
 #simplemodal-container a.modalCloseImg {
  background: url(../images/modal_close.png) no-repeat;
  width:25px;
  height:29px;
  display:inline;
  z-index:3200;
  position:absolute;
  top:15px;
  right:18px;
  cursor:pointer;
 }
 .modala
 {
  width: 372px;
  height: 206px;
  background: url(../images/modal.png) no-repeat;
 }
    </style>
</head>
<body>
 test page
    <script language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
    <script language="javascript" src="/include/jquery.simplemodal-1.3.5.js" type="text/javascript"></script>
    <script type="text/javascript">
  $("body").click(function() { $.modal("<div class=\"modala\"><h1>SimpleModal</h1></div>", {overlayClose: true} ); });
    </script>
</body>
</html>

可能是什么问题?这是simplemodal和FF的已知问题吗?

1 个答案:

答案 0 :(得分:0)

simplemodal是一个已弃用的库。你最好使用像http://docs.jquery.com/UI/Dialog

这样的东西