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.
例子
window.open("www.google.com");
打开 www.mywebsite.com/www.google.com
为什么要这样做,我怎样才能让它打开 google.com?
尝试使用完整的网址而不是短网址:
window.open("http://www.google.com");
试试这个:
它会帮助你吗