以下のようなキーワードを使用して、ファイルのルートの場所を取得したいと考えています。しかし、両方のキーワードで異なる結果が得られます。
<script type="text/javascript" src="http://localhost/website/core/core.js"></script>
<script type="text/javascript" src="http://localhost/website/local/ready.js"></script>
$('script[src$="core.js"]').attr('src').split('core')[0];
// get this --> http://localhost/website/
$('script[src$="ready.js"]').attr('src').split('local')[0];
// get this --> http://
私はhttp://localhost/website/
私の結果を求めています。
以下のような分割関数に正規表現を追加することは可能ですか?
$('script[src$="core.js"]').attr('src').split('core|local')[0];