搜索

Jquery messager 如何将消息框固定右下角

发布网友 发布时间:2022-04-23 16:53

我来回答

3个回答

热心网友 时间:2023-10-09 20:21

$.messager.show('不会关闭的消息', '要自己点关闭的X才可以哦!', 0);追问谢谢 但是我的问题是 消息对话框 会 随着页面滚动条移动 ,这样很不好,我想对话框固定在屏幕右下角。

热心网友 时间:2023-10-09 20:21

<!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">
<style type="text/css">
body{
height:2000px;
}
.right{
position:absolute;
right:0;
bottom:0;
width:100px;
height:100px;
background:#345678;
}
</style>
</head>
<body>
<div>参照物</div>
<div class="right">我很淡定</div>
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(window).scroll(function(){
var topValue = $(window).scrollTop();
$('.right').css('bottom',-topValue)
})
</script>
</body>
</html>
<!-- 请更改Jquery路径后查看 -- >

热心网友 时间:2023-10-09 20:22

给个id 用scolltop=scollheight试试 单词可能不对啊
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top