Editor's note: This article has been the original bonus points, please continue to work!
I recently started using 360 browser, in the article when the wrong word, want to press BACKSPACE backspace key to delete, the result returned to the previous page. Remember before using a low version of Chrome, Chrome is the backspace set to return to the previous page of t
Two steps:1. Remove the annoying VI consistency pattern and avoid some bugs and limitations of previous versionsSet nocompatible2.backspace has several ways of working, which are VI compatible by default. Very unaccustomed to beginners. People who are not so familiar with the old VI are also very troubled. can be usedSet Backspace=indent,eol,startTo solve.Indent: If used: Set Indent,:set AI and other auto-i
1. Shielding function class
1.1 Screen Keyboard all keys
1.2 Screen right mouse button
Add Oncontextmenu=self.event.returnvalue=false to the body tag.
Or
function Nocontextmenu ()
{
if (document.all) {
Event.cancelbubble=true;
Event.returnvalue=false;
return false;
}
}
Or
1.3 Mask CTRL + N, Shift+f10, F5 refresh, backspace key
Screen the right mouse button, CTRL + N, Shift+f10, F5 refresh, backspace key
The Backspace event is blocked on the webpage. The input box is not blocked, and the backspace input box is
Document. onkeydown = function (e) {var code; if (! E) {var e = window. event;} if (e. keyCode) {code = e. keyCode;} else if (e. which) {code = e. which;} // BackSpace 8; if (event. keyCode = 8) (event. srcElement. type! = "Text" event. srcElement. type!
Excerpt from: http://blog.csdn.net/xiaojun111111/article/details/50810439http://hongzhguan.iteye.com/blog/1479563Just put the Ubuntu system reinstall on the virtual machine, and then try VI Editor, found that using VI, can not use the BACKSPACE key to BACKSPACE, backspace key press down to become ABCD, delete key is invalid.Workaround:Programme one:The vim full v
Label:1. Set back to delete before entering SqlplusBefore entering Sqlplus, execute the following command at the current terminal: Stty erase ' ^h '.Stty: Modify the terminal parameters. If you do not want to enter the terminal every time this command, in the current user's. Profile Add this command. The meaning of this command is to useThe BACKSPACE key is used as the DELETE key.2, in Sqlplus with Ctrl+backspace
OracleDatabaseforLinux does not support the backspace key.
Oracle Database for Linux does not support the backspace key.
Method 1: When you want to use the backspace key, press ctrl + backspace
Method 2: Add the following content to any startup script:[Oracle @ night ~] $ Tail-1. bash_profileStty erase ^ H
Stty in
Method 1: press ctrl + backspace while using the backspace key.
Method 2: Add the following content to any startup script:[Oracle @ night ~] $ Tail-1. bash_profileStty erase ^ H
Stty indicates set tty, which is mainly used to check and modify the communication parameters of the currently registered terminal.The above two methods solve the backspace key problem. I
Users who use Ubuntu13.04 may find a detail. In Ubuntu13.04, the return function of the rsquo; Backspace rsquo; key is gone. No movement is made when pressing the rsquo; Backspace rsquo; key in Nautilus/Thunar or Firefox (normally, the return function should be used) at first, I thought it was an aftereffect for upgrading the system, but later I learned that Ubuntu 13 was installed normally.
Users who u
A project was submitted last week (used internally), together with a bug, said to disable the BACKSPACE key (BACKSPACE or call Back button), because this and his habits are not the same, fearing that if the text input half, he pressed the backspace key, the whole page of the content of white filled, Then vowed to say that he did the system back key is not used, I
How does js disable the Backspace key to bring the browser back? jsbackspace
In the project, if you press the Backspace key to bring the browser back, several solutions are not ideal. Therefore, the wisdom of the masses and the wisdom of the family are summarized as follows:
1. Define the method to block Backspace in public js
Function banBackSpace (e) {var ev =
This article mainly introduces how JavaScript disables the Backspace key, which can help you solve the problem of "rolling back to the previous page by pressing the Backspace key in the read-only input box in IE, if you are interested, you can refer to the findings in IE today. when you use the readonly = "readonly" attribute to set the text box to read-only
There is a strange problem: if the cursor enters
Today found in IE browser, when the use of the readonly= "ReadOnly" property to set the text box to read-only is that if the cursor goes into a read-only text box and then presses the BACKSPACE key, it jumps to the previous page, as if clicking the Back button on the browser returns to the previous page, and there is no such problem with Firefox and Google. , to solve this problem, write a method such as the following, if the text box is read-only
JQuery implements a method to prevent the return of the backspace key
This article mainly introduces JQuery's method to prevent the return of the Backspace key. The example shows how jQuery makes Backspace unavailable while Backspace is still available in the browser, which is of great practical value, for more informa
Using vi in ubuntu is a solution for changing the direction keys to garbled characters _ The backspace key cannot be used. This evening, the teacher assigned us a ubuntu Virtual Machine and said we would like to use it for experiments. Of course, it doesn't matter. My favorite is ubuntu, but it may be a very difficult experiment process for some people who are not familiar with linux.
Using vi in ubuntu is a solution for changing the direction keys to
Using vi in ubuntu is a solution for changing the direction keys to garbled characters _ the backspace key cannot be used. this evening, the teacher assigned us a ubuntu virtual machine and said we would like to use it for experiments. Of course, it doesn't matter. My favorite is ubuntu, but for some people who are not familiar with linux, maybe... using vi in ubuntu is a solution for changing the direction keys to garbled characters _ the
A problem that the project encountersA normal web page, if there is no focus on this page, then click on the "Backspace" button, the page will be rolled back (backward to the previous page),This will be a problem, when I entered in an input box, entered a number of characters, began to click the "Backspace" key to delete,When the character in the text box is deleted, pressing the "
When you use the readonly= "ReadOnly" property to set the text box to read-only to solve this problem, you can add the following processing method to the page, and if the text box is read-only, disable the BACKSPACE key. The code is as follows: Scripttype= "Text/javascript"> //handling keyboard events prevents back key (Backspace) passwords or single-line, multiline text boxes except functionBanbacks
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.