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.
如果用户代理包含单词“myapp”,则 alert('hi');
顺便说一句,我正在使用 JQuery。
if (navigator.userAgent.indexOf("myapp") !== -1) { alert("hi"); }
我建议您不要进行用户代理嗅探。