你知道jQuery中的弹出窗口就像MSN Messenger的弹出窗口一样吗? 我想在页面的右边显示一条消息,例如。
非常感谢
答案 0 :(得分:3)
以下是我使用jQuery UI Dialog提出的建议。
标记:
<div id="dialog" title="New Message!" >Hi, How are you?</div>
<button type="button">Check Messages</button>
jQuery的:
$("#dialog").dialog({
height: 120,
width: 10,
draggable: false,
position: ['right', 'bottom'],
autoOpen: false,
show: {
effect: 'slide',
direction: 'up',
duration: 300
}
});
$(':button').click(function() {
$('#dialog').dialog("close").dialog('open');
});
答案 1 :(得分:0)