0%

vscode插件默认的安装位置是

1
C:\Users\用户名\.vscode\extensions

我们需要右击vscode快捷方式,将属性值后边加上

1
--extensions-dir "D:\Microsoft VS Code\extensions"

—extensions-dir后边是你想要存放插件的位置
例如我的是

1
"D:\Program Files\Microsoft VS Code\Code.exe" --extensions-dir "D:\Microsoft VS Code\extensions"

VSCode会将每个工作区的一些配置、扩展、缓存等保存在一个默认的目录,在Windows下,此默认目录为:

1
%AppData%\Code\User\workspaceStorage

和上面的操作一样,需要右击-属性值后加上下面参数

1
--user-data-dir "D:\Microsoft VS Code\data"

例如我的是

1
"D:\Microsoft VS Code\Code.exe" --user-data-dir "D:\Microsoft VS Code\data" --extensions-dir "D:\Microsoft VS Code\extensions"

Uint8Array转字符串

1
2
3
4
5
6
7
8
function Uint8ArrayToString(fileData){
var dataString = "";
for (var i = 0; i < fileData.length; i++) {
dataString += String.fromCharCode(fileData[i]);
}

return dataString
}

字符串转Uint8Array

1
2
3
4
5
6
7
8
9
10
function stringToUint8Array(str){
var arr = [];
for (var i = 0, j = str.length; i < j; ++i) {
arr.push(str.charCodeAt(i));
}

var tmpUint8Array = new Uint8Array(arr);
return tmpUint8Array
}

阅读全文 »

JS代码:

1
2
3
4
5
6
7
8
9
10
11
<script>
var gSelectID = ["123","456",'789'];
for (var i in gSelectID) {
var selectID = document.getElementById("selectID");
var option = document.createElement("option");// 创建option元素
option.appendChild(document.createTextNode(gSelectID[i]));
option.setAttribute("value", gSelectID[i]);
selectID.appendChild(option);
}

</script>

html代码:

1
2
3
<div id="selectIdBox">
<select id="selectID"></select>
</div>

这篇文章主要介绍“JS中修改td值有几种方法,代码如何写”的相关知识,下面会通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强。

javascript修改td值的方法:
1、利用innerHTML属性,语法“指定td节点.innerHTML = “新内容”;”;
2、利用innerText属性,语法“指定td节点.innerText = “新内容”;”。

阅读全文 »

windows分屏 拔掉显示器之后软件不在主显示器上显示问题

公司回来发现打开软件后不显示在笔记本上 发现是外接设备的问题 会导致之前打开的软件再打开时会到外接显示器上 搜索实践后解决方案:

1.让软件保持打开状态 任务栏显示是使用状态的
2.使用alt+空格
3.使用M键 此时发现移动鼠标没有
4.使用键盘方向键 等出现软件界面的时候就可以使用鼠标了