1

jquery/javascriptを使用して、ポート番号の後に「何か」という単語などの最初の単語を常に読み取るにはどうすればよいですか?

これがURLで、ポート番号の後の最初の単語を取得したい

http://www.aaa.com:1081/something/arap/con.html

$(document).ready(function() {
    var currentUrl= window.location.pathname;
    alert (currentUrl);
}); 
4

3 に答える 3

1

クイック&ダーティ:

window.location.pathname.split('/')[1]

ただし、代わりに次のようなものを使用することをお勧めします: https://github.com/allmarkedup/jQuery-URL-Parser

于 2012-11-15T20:17:17.993 に答える
0
$(document).ready(function() {
    var pathArray = window.location.pathname.split( '/' );
   //Then access the different parts by the parts of the array, like
    var secondLevelLocation = pathArray[0];

});
于 2012-11-15T20:17:00.883 に答える
0

試す:

$(document).ready(function() {
    var currentUrl= window.location.pathname.split('/')[1];
    alert (currentUrl);
}); 
于 2012-11-15T20:17:14.743 に答える