url_changeprotocol

URLのプロトコルをすげ替えます

説明
定義
url_changeprotocol(URL,変更するプロトコル);
引数
1.URL
処理したいURLを書きます。
2.変更するプロトコル
変更したいプロトコルを書きます。。
戻り値
URLのプロトコル部分がすげ替えられたものが返されます。
この関数は同期処理されます。
var hosturl = url_changeprotocol("http://hoghoge.com:123/dir/hoghgoe?aa=1","https");
alert(hosturl);
//結果: https://hoghoge.com:123/dir/hoghgoe?aa=1
		

注意とヒント
参考