问题描述
我可以使用JavaScript中的execCommand
函数删除第一个字符吗?
所以,我需要:
"My string..."
document.execCommand('...');
"y string..."
$('#myDiv').keydown(function(e) {
var sel = document.getSelection(),nd = sel.anchorNode,text = nd.textContent.slice(0,sel.focusOffset),col = text.split("\n").pop();
switch (e.keyCode) {
case 13:
if (e.shiftKey) {
// ....
}
break;
}
});
谢谢。
解决方法
要删除字符串的第一个字符,可以使用substring(1)
函数:
let str = "My string...";
let res = str.substring(1);
console.log(res);