17
URLに特定の文字列が含まれているかどうかを確認するにはどうすればよいですか?
どうすればこのようなことができますか: <script type="text/javascript"> $(document).ready(function () { if(window.location.contains("franky")) // This doesn't work, any suggestions? { alert("your url contains the name franky"); } }); </script>
361
javascript
jquery
url