As a simple example, here is a piece of code:
Copy code The code is as follows:
function Button1_onclick() {
alert("Hello");
alert("JacobSong");
}
First cut two strings: first cut "JacobSong", then "Hello ", press the Ctrl+Shift+V keys at the first place, and something like this will appear:
Copy the code The code is as follows:
function Button1_onclick() {
alert("Hello");
alert("");
}
Press Ctrl+Shift+V at the second place Twice,
Copy code will appear. The code is as follows:
function Button1_onclick() {
alert("Hello ");
alert("JacobSong");
}
20 items can be saved in the clipboard in a loop. You can recall the content you have cut as long as you continue to Press Ctrl+Shift+V until you find the item you need. Haha, isn’t it a great time saver?
http://www.bkjia.com/PHPjc/323244.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323244.htmlTechArticleAs a simple example, here is a piece of code: Copy the code as follows: function Button1_onclick() { alert(" Hello"); alert("JacobSong"); } First cut two strings: first cut...