我正在发现ReactJS,尝试了一些东西,但我遇到了一个问题:我的身高固定为76px,我无法做任何事情,我尝试了很多东西,没有任何效果。 这是我正在使用的代码
function keepletteronly(str) {
str=str.toLowerCase();//Make the string to lower case
arr=str.split(""); //This way I make an array out of the string
arr1=[]; //make an new array
for (i=1; i<=arr.length;i++){
if (arr[i].match(/[a-z]/)!=null) { //This is where the problem is
arr1.push(arr[i]); //retain only the letters and append to the arr1
}
}
newstring=arr1.join;
return newstring;
}
keepletteronly("1eye");
知道为什么吗?以及如何解决这个问题?
答案 0 :(得分:0)
如果从身体中删除EXPLAIN SELECT ...
,也许会有所帮助。反正它什么都不做。除此之外,您可以尝试将身高设置为position: relative;
。