<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript" src="https://cdn.bootcss.com/jquery/1.7.1/jquery.min.js"></script>
</head>
<style>div.marquee{overflow:hidden;background:#ccc;width:400px;height:140px;line-height:30px}</style>
<body>
<div class="marquee">
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
该系统于2017-06-21进行维护,望相互告知!!!<br/>
</div>
</body>
<script>
$('div.marquee').each(function () {
if (this.scrollHeight > this.offsetHeight) $(this).html('<marquee behavior="scroll" direction="up" scrollamount="1" height="140" οnmοuseοver="this.stop()" οnmοuseοut="this.start()">'+this.innerHTML+'</marquee>');
});
</script>
</html>