Javascript examples for jQuery:String
Get substring between two last instances of character in url
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(window).load(function(){/* w w w. j a v a2s . c o m*/ var url = 'http://www.java2s.com/style/demo/Google-Chrome.png'; // window.location.href; var page = url.substr(0, url.lastIndexOf('/')); var str = page.substr(page.lastIndexOf('/')+1); console.log(str); }); </script> </head> <body> </body> </html>