Sunday, October 23, 2016

javascript - Split text from url




I have this url




https://myapp.tezze-now.com/sp?id=form&table=user&sys_id=cb6688db0d79b5e9619&view=sp


I need to get text of table name from the url when page loads.
I tried this



location.href.split('&')[1]



It returns "table=user". but I need the table name alone as user.



How can I get this?


Answer



Try using URL.searchParams





 // location.href
let str = "https://myapp.tezze-now.com/sp?id=form&table=user&sys_id=cb6688db0d79b5e9619&view=sp";


console.log((new URL(str)).searchParams.get("table"));




No comments:

Post a Comment