1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @{
- ViewBag.Title = "Refresh";
- }
- <span class="showhide" style="width: 100px; font-size: 16px; display:none; color: #18a689; cursor:pointer;"><i class="im-volume-high2" style=" font-size: 18px;"></i> (<s>100</s>)</span>
- <script type="text/javascript">
- //刷新在线人数
- function DoRefresh() {
- $.post('/Online/Update/' + $('#hiduserid').val(), null, function (result) {
- if (result.toString() == "0") {
- if (errorCount == 0) {
- errorCount = 1
- }
- }
- else if (result.toString() == "-1") {
- if (errorCount == 0) {
- alert("用户在其他位置登陆,请重新登陆");
- errorCount = 1
- window.top.location = '/';
- }
- }
- }, 'text');
- }
- //$(function () {
- // //闪烁图标
- // //var num = $('.showhide').children('s').html();
- // //if (eval(num) > 0) {
- // //setTimeout(function () {
-
- // // $('.showhide').show(500);
- // // $('.showhide').hide(500);
- // //}, 1110);
- // //} else {
- // // $('.showhide').hide();
- // //}
- // // setInterval(DoRefresh, 10000);
- // //点击
- // $('.showhide').click(function () {
- // });
- //});
- </script>
|