0
我想改變以下網址:JS字符串格式化
`http://en.savefrom.net/#url=https://www.youtube.com/watch?v=xxxxxx`
到
`http://www.website.my/p/test.html?id=https://www.youtube.com/watch?v=xxxxxx`
是否有一個JavaScript或jQuery的解決方案呢?
我想改變以下網址:JS字符串格式化
`http://en.savefrom.net/#url=https://www.youtube.com/watch?v=xxxxxx`
到
`http://www.website.my/p/test.html?id=https://www.youtube.com/watch?v=xxxxxx`
是否有一個JavaScript或jQuery的解決方案呢?
如果它永遠是這些確切的模式,你可以這樣寫:
var newUrl = 'http://www.website.my/p/test.html?id=' +
oldUrl.split('#url=')[1];
這裏的Fiddle。
如何申請?你可以在jsfiddle.net – Mansyur
(https://jsfiddle.net/rikojeff/1541872p/) – Mansyur