JavaScriptで現在のHTMLファイルの名前を取得する方法
方法1: window.locationオブジェクトを使用する方法var fileName = window.location.href.split("/").pop(); console.log(fileName);>>More
方法1: window.locationオブジェクトを使用する方法var fileName = window.location.href.split("/").pop(); console.log(fileName);>>More