1

当我选择部分文本并单击 javascript/jquery 中的按钮时,我需要更改大小写此代码不适用于所选部分

$("#button").click(function() {
        value = "some selected text"; 
        value.replace(/\-[a-z]/g, /\-[A-Z]/g);
});

输出应该是:

一些选定的文本

4

1 回答 1

2

这应该更好地工作:

$("#button").click(function() {
    value = "some selected text"; 
    value = value.toUpperCase();
});

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase

var lowerText="alphabet";
document.write(lowerText.toUpperCase());
于 2013-07-26T18:54:49.483 回答