Javascript 指定URLがlocalhostであるかを判定する方法
環境
Google Chrome 109.0.5414.120
Windows 10 Home 64bit
書式
文字列.includes('localhost’)
文字列.includes('127.0.0.1’)
includesメソッドを使って指定URLがlocalhostであるかを判定します。
使用例
const str = 'http://localhost:8080/'; console.log( str.includes('localhost') || str.includes('127.0.0.1') );
実行結果
true