|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
市场分额,java比asp高一点,因为C#是仿照java开发的,所以哦C#能做的java都能做到,但是java能做的,C#不一定都能做到。毕竟是抄袭吗。使用Javascript中每一个对象(Object)的prototype属性我们能够为Javascript中的内置对象增加我们本人的办法和属性。
以下我们就用这个属性来为String对象增加三个办法:Trim,LTrim,RTrim(感化和VbScript中的同名函数一样)
String.prototype.Trim=function()
{
returnthis.replace(/(^s*)|(s*$)/g,"");
}
String.prototype.LTrim=function()
{
returnthis.replace(/(^s*)/g,"");
}
String.prototype.Rtrim=function()
{
returnthis.replace(/(s*$)/g,"");
}
怎样,复杂吧,上面看一个利用的实例:
<scriptlanguage=javascript>
String.prototype.Trim=function()
{
returnthis.replace(/(^s*)|(s*$)/g,"");
}
vars="leadingandtrailingspaces";
window.alert(s+"("+s.length+")");
s=s.Trim();
window.alert(s+"("+s.length+")");
</script>
而学习JAVA我觉得最应该避免的就是:只学习,不思考,只记忆,不实践! |
|