专业编程基础技术教程

网站首页 > 基础教程 正文

JavaScript基础知识:字符串的使用和基本操作

ccvgpt 2024-08-10 12:48:09 基础教程 7 ℃

在字符串中查找字符串,使用indexOf()来定义字符串中某一个制定的字符串首次出现的位置

var str="Hello world, welcome to the universe.";
var n=str.indexOf("welcome");
内容匹配:match函数用来查找字符串中特定字符,并且找到,返回该字符串:
var str="Hello world!";
document.write(str.match("world") + "<br>");
document.write(str.match("World") + "<br>");
document.write(str.match("world!"));

js正则表达式:RegExp,正则表达式描述了字符的模式对象,当检索某个文本是,可使用一种模式来检索内容。语法:

JavaScript基础知识:字符串的使用和基本操作

var patt=new RegExp(pattern,modifiers);

或更简单的方法

var patt=/pattern/modifiers;

浏览器对象模型:BOM。window尺寸,有三种方法确定浏览器窗口的尺寸,window.innerHeight window.innerWIdth

  • document.documentElement.clientHeight
  • document.documentElement.clientWidth

或者

  • document.body.clientHeight
  • document.body.clientWidth

Tags:

最近发表
标签列表