📌  相关文章
📜  如何在不使用 JavaScript 中的正则表达式的情况下检测设备是否为 iOS?

📅  最后修改于: 2021-08-30 09:39:54             🧑  作者: Mango

任务是在 JavaScript 的帮助下,在不使用 RegExp 的情况下检测设备是否为 iOS。下面讨论两种方法。

方法 1:使用navigator.platform 属性使用 indexOf() 方法检查属于 iOS 设备的特定关键字。

  • 例子:
    
    
        
            
                Detect whether a device is iOS 
                without using RegExp
            
        
        
            

                GeeksforGeeks         

            

                Click on the button to detect              whether a device is iOS or not?         

                     

            
  • 输出:

方法 2:使用navigator.platform 属性从列表中检查属于 iOS 设备的特定关键字。使用pop() 方法将它们一一取出并进行比较。

  • 例子:
    
    
        
            
                Detect whether a device is 
                iOS without using RegExp
            
        
        
            

                GeeksforGeeks         

            

                Click on the button to detect              whether a device is iOS or not?         

                     

           
  • 输出: