Home  >  Article  >  Web Front-end  >  How to determine whether a string contains subcharacters in jquery

How to determine whether a string contains subcharacters in jquery

coldplay.xixi
coldplay.xixiOriginal
2020-11-26 10:44:142468browse

Jquery method to determine whether a string contains sub-characters: first create a jq folder to place jquery, and introduce jquery and the script you created in the html header; then use the [test()] method to determine whether it contains characters string.

How to determine whether a string contains subcharacters in jquery

The operating environment of this tutorial: ubuntu16 system, jquery version 1.12. This method is suitable for all brands of computers.

Related recommendations: "jQuery Video Tutorial"

jquery method to determine whether a string contains subcharacters:

1 , create a jq folder to place jquery, and two files include_test.html and include_test.js.

How to determine whether a string contains subcharacters in jquery

#2. Introduce jquery and the include_test.js script you created in the html header.

How to determine whether a string contains subcharacters in jquery

#3. First, we can use the test() method to determine whether it contains our own string.

How to determine whether a string contains subcharacters in jquery

4. You can also write new RegExp('aa') this way.

How to determine whether a string contains subcharacters in jquery

5. We can also use the indexOf() method to determine whether it contains characters. This indexOf() returns the position of the character. If not Character returns -1, as long as it is judged not to be -1, that is, >=0 exists.

How to determine whether a string contains subcharacters in jquery

#6. If you want to determine whether a certain string exists in the array, you can traverse and then use indexOf() to determine.

How to determine whether a string contains subcharacters in jquery

Related learning recommendations: javascript video tutorial

The above is the detailed content of How to determine whether a string contains subcharacters in jquery. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn