location.hers取得と送信値
470 ワード
const getURLParameters = url =>
(url.match(/([^?=&]+)(=([^&]*))/g) || []).reduce(
(a, v) => ((a[v.slice(0, v.indexOf('='))] = v.slice(v.indexOf('=') + 1)), a),
{}
);
getURLParameters(locations.hers){a:b}着信先取得オブジェクト
getURLParameters(locations.hers){a:こんにちは]
decodeURIComponent(getURLParameters(location.href).title)
中国語の場合はdecodeURIComponentコンパイルが必要です.でないと文字化けです.