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.
ver = ver.replace(/http://www.google.com/g,'http://www.google.ro');
/ で競合しているようです
その問題を解決する方法は?
手伝ってくれてありがとう!
前者は正規表現を区切るために使用されるため、/バックスラッシュでスラッシュをエスケープします。\
/
\
ver = ver.replace(/http:\/\/www.google.com/g,'http://www.google.ro');
バックスラッシュを使用して、スラッシュをエスケープします。