您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prevent redirecting JS feature. Packed in user.js
- // ==UserScript==
- // @name noRedirect
- // @namespace https://gist.github.com/piqus/4ea4664519a83d7fb073
- // @version 0.1
- // @description Prevent redirecting JS feature. Packed in user.js
- // @match *
- // @copyright 2014+, Piotr Kubisa
- /// @link: http://stackoverflow.com/questions/5225964/jquery-disable-all-redirections-links-form-submissions-window-location-change
- // ==/UserScript==
- window.onbeforeunload = function(e){
- var e = e || window.event;
- // For IE and Firefox (prior to 4)
- if (e){
- e.returnValue = 'Do you want to leave this page?';
- }
- // For Safari and Chrome
- return "Do you want to leave this page?";
- };