To get only the file name, I'll use the split() and pop() functions. <script> let url = window.location.href; let filename = url.split('/').pop ...
確定! 回上一頁