Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将文本字符转换为数组元素,
word.text="Hello";
不知道怎么转换
wordArray=["H","e","l","l","o"];
这是一个非常基本的问题,在谷歌上搜索会给你正确的答案......但无论如何......
wordArray = word.text.split('');