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.
スクリプトでreplace()メソッドを使用する必要がありますが、バージョン9より前のInternetExplorerでは機能しません。
したがって、次のコードは、IE<9でも「VisitMicrosoft」を返します。
var str="Visit Microsoft!"; var n=str.replace("Microsoft","Sara");
replace()ほとんどのブラウザで動作します(AFAIKもIE6、IE7)。
replace()
ちなみに、この関数を使ってゼロから実装することもできます。
http://phpjs.org/functions/str_replace/