本文介绍了如何使用Jquery或Javascript关闭我当前的浏览器窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞!$(document).ready(function () { var progressbar = $('#progress_bar'); max = progressbar.attr('max'); time = (10000 / max) * 5; value = progressbar.val(); var loading = function () { value += 1; addValue = progressbar.val(value); $('.progress-value').html(value + '%'); var $ppc = $('.progress-pie-chart'), deg = 360 * value / 100; if (value > 50) { $ppc.addClass('gt-50'); } $('.ppc-progress-fill').css('transform', 'rotate(' + deg + 'deg)'); $('.ppc-percents span').html(value + '%'); if (value == max) { // alert('It is over,Now Your session has Been Expire.Please Retry to completed this Process With in Time.'); //window.location("http://www.bing.in"); window.close(); clearInterval(animate); } }; var animate = setInterval(function () { loading(); }, time); });推荐答案 这篇关于如何使用Jquery或Javascript关闭我当前的浏览器窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!