javascript - Why doesn't this code convert the URL to lowercase? - Stack Overflow

This is in my 404.shtml file<script> var oldUrl = window.location.href; var newUrl = oldUrl.toLow

This is in my 404.shtml file

<script> var oldUrl = window.location.href; var newUrl = oldUrl.toLowerCase; location.href = newUrl; </script>

This is in my 404.shtml file

<script> var oldUrl = window.location.href; var newUrl = oldUrl.toLowerCase; location.href = newUrl; </script>
Share Improve this question asked Feb 22, 2014 at 23:37 user3056010user3056010 131 silver badge3 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

I think var newUrl = oldUrl.toLowerCase; should be var newUrl = oldUrl.toLowerCase();, since it is a function.

toLowerCase is a function so needs ():

<script> 
    var oldUrl = window.location.href; 
    var newUrl = oldUrl.toLowerCase(); 
    location.href = newUrl; 
</script>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745633193a4637230.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信