javascript

VPS优惠

javascript在新窗口中打开连接

一般我们通过javascript代码打开新连接会使用window.location.href方法,但是这种方法却无法实现在新窗口打开的功能,也就是不能实现target的方式打开网页。 我们可以通过使用top.location来实现javascript在新窗口中打开连接,具体使用方法: top.location = “http://www.02405.com”...
赞 (0)阅读(2041)
真实测评

javascript字符串大小写转换

JavaScript通过toUpperCase()方法和toLowerCase()方法实现字符串的大小写转换,其中toUpperCase用于将小写字符转换为大写字符,toLowerCase用于将大写字符转换为小写字符。具体示例如下: 1.小写转大写,输出WWW.02405.COM let str = "www.02405.com"; str = str.to...
赞 (0)阅读(2265)