답변:
jQuery가 필요 없음
var type = window.location.hash.substr(1);
.slice(1)
대신에 대신 사용할 수도 있습니다 .substr(1)
.
다음 코드를 사용하여 수행 할 수 있습니다.
var url = "www.site.com/index.php#hello";
var hash = url.substring(url.indexOf('#')+1);
alert(hash);
var url ='www.site.com/index.php#hello';
var type = url.split('#');
var hash = '';
if(type.length > 1)
hash = type[1];
alert(hash);
jsfiddle 작업 데모
if
문에 단축 할 수있다 var hash = type[1] || "";
.
URL에서 해시 (#) 후 값을 얻으려면 다음 JavaScript를 사용하십시오. 이를 위해 jQuery를 사용할 필요가 없습니다.
var hash = location.hash.substr(1);
이 코드와 튜토리얼을 여기 에서 얻었습니다-JavaScript를 사용하여 URL에서 해시 값을 얻는 방법
런타임에서 URL을 얻었으므로 아래에서 정답을 제공했습니다.
let url = "www.site.com/index.php#hello";
alert(url.split('#')[1]);
도움이 되었기를 바랍니다
AK의 코드를 기반으로 다음은 도우미 함수입니다. JS Fiddle Here ( http://jsfiddle.net/M5vsL/1/ ) ...
// Helper Method Defined Here.
(function (helper, $) {
// This is now a utility function to "Get the Document Hash"
helper.getDocumentHash = function (urlString) {
var hashValue = "";
if (urlString.indexOf('#') != -1) {
hashValue = urlString.substring(parseInt(urlString.indexOf('#')) + 1);
}
return hashValue;
};
})(this.helper = this.helper || {}, jQuery);