我觉得自己很傻,无法弄清楚如何使用jQuery更改案例。 Stackoverflow = stackoverflow。
的jQuery
var name = "Stackoverflow"
$('name').toLowerCase();
alert(name);
答案 0 :(得分:4)
你不需要JQuery。只需使用纯JavaScript:
var name = "Stackoverflow"
name = name.toLowerCase();
alert(name);
答案 1 :(得分:1)
尝试:
var name = "Stackoverflow"
name.toLowerCase();
alert(name);
答案 2 :(得分:0)
您正在声明一个变量name
,然后尝试使用jQuery将其作为对象引用,这是不正确的,因为它不是有效对象。相反,您希望将JavaScript方法toLowerCase()
应用于变量,并根据需要转换字符串。
var name = "Stackoverflow"
name = name.toLowerCase();
alert(name);
为了在实际对象上使用该方法,在应用大小写转换方法之前,首先必须从该对象中提取字符串值,可能使用text()
或val()
方法
通过将toLowerCase()
方法直接应用于变量声明中的字符串,可以使其更简单,如下所示:
var name = "Stackoverflow".toLowerCase();
alert(name);
答案 3 :(得分:0)
你不需要jQuery。 JavaScript已经内置到String类中的toLowerCase和toUpperCase函数。