javascript首尾反转字符

var my_str="Welcome to www.sharejs.com"
var i=my_str.length;
i=i-1;
for (var x = i; x >=0; x--)
{
document.write(my_str.charAt(x));
}

 

posted @ 2016-01-28 09:03  Earic  阅读(155)  评论(0编辑  收藏  举报