0

我有一个基本有效的对话框的简单脚本:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

<script type="text/javascript">
$(document).ready(function () {
    $(function () { $("#dialog").dialog();
    });
});
</script>
</head>
<body">
<div id="dialog" title="Message">
<p>Hello! Did you know you could save 2%</p>
</div>
</body>

但是,将其集成到某些网站有时效果不佳。请查看链接上的区别: http ://www.jboston.net/2013/Message1.png 如何解决将关闭按钮向左移动的问题?

Firebug 显示该按钮的以下代码:

<button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close" role="button" aria-disabled="false" title="close" style="margin-right: 328.5px;"><span class="ui-button-icon-primary ui-icon ui-icon-closethick"></span><span class="ui-button-text">close</span></button>

所有样式都来自 jquery-ui.css,除了一种来自 HTML 的样式:“margin-right: 328.5px;”

4

1 回答 1

0

经过一些工作,我放弃了使用 jquery-ui 对话框。仅使用 jQuery animate 就可以创建我需要的功能。

HTML:

<div id="admess" style="background: LightCyan; height: 150px; width: 400px; position: absolute;     display:none">
 <h3>title></h3>
 <h4>message></h4>
 <br/>
 <a id="closead" href="#">Close</a>
 </div>

jQuery:

if ($("#admess").length)
{
         $("#admess").animate({
          left: $(window).width()/2 - $("#admess").width() / 2,
          top:  $("#admess").parent().height() / 2 - $("#admess").height() / 2,
          opacity: '1',
          height: '150px',
          width: '400px'
      });
         $("#admess").show();
 }

$("#closead").click(function () {
     $("#admess").hide();
 });
于 2013-07-08T21:28:18.583 回答