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.
如果我需要检查某个句子中是否存在某个特定单词,那么我应该在 javascript 中为 UIAutomation 使用什么语法/代码?
使用函数 indexOf():
在字符串中搜索“欢迎”:
var str="Hello world, welcome to the universe."; var n=str.indexOf("welcome");
n的结果将是:
13
如果要搜索的值不存在,则此方法返回 -1。