vs中通过剪切板循环来循环粘贴不同内容_PHP

WBOY
Release: 2016-06-01 12:16:35
Original
877 people have browsed it

举个简单的例子,这里有一段代码:
复制代码 代码如下:
function Button1_onclick() {
alert("Hello");
alert("JacobSong");
}

首先剪切两个字符串:先剪切"JacobSong",然后是"Hello",在第一处按下Ctrl+Shift+V键,就会出现这样的
复制代码 代码如下:
function Button1_onclick() {
alert("Hello");
alert("");
}

在第二处按Ctrl+Shift+V键两次,就会出现
复制代码 代码如下:
function Button1_onclick() {
alert("Hello");
alert("JacobSong");
}

在剪贴板中可以循环保存20项,您可以任意的调用你剪切过的内容,只要不断的按Ctrl+Shift+V键直到找到您需要的那一项,呵呵,是不是很节省时间

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template