Created
June 9, 2015 17:25
-
-
Save salipro4ever/67255c723382beccd50a to your computer and use it in GitHub Desktop.
Convert vn language to url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| function locdau(){ | |
| //code by Minit - www.canthoit.info - 13-05-2009 | |
| var str = (document.getElementById("title").value); | |
| str= str.toLowerCase(); | |
| str= str.replace(/à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ/g,"a"); | |
| str= str.replace(/è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ/g,"e"); | |
| str= str.replace(/ì|í|ị|ỉ|ĩ/g,"i"); | |
| str= str.replace(/ò|ó|ọ|ỏ|õ|ô|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ/g,"o"); | |
| str= str.replace(/ù|ú|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ/g,"u"); | |
| str= str.replace(/ỳ|ý|ỵ|ỷ|ỹ/g,"y"); | |
| str= str.replace(/đ/g,"d"); | |
| str= str.replace(/!|@|\$|%|\^|\*|\(|\)|\+|\=|\<|\>|\?|\/|,|\.|\:|\'| |\"|\&|\#|\[|\]|~/g,"-"); | |
| str= str.replace(/-+-/g,"-"); //thay thế 2- thành 1- | |
| str= str.replace(/^\-+|\-+$/g,"");//cắt bỏ ký tự - ở đầu và cuối chuỗi | |
| return alert("Kết Quả: "+ str); | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment