Home>Article>Web Front-end> How to remove characters in javascript

How to remove characters in javascript

藏色散人
藏色散人 Original
2021-03-30 11:06:54 4523browse

How to remove characters in JavaScript: First use the input tag to create a string input box and set its id attribute to myinput; then create a button button and bind the onclick click event; then create the del function in js; Finally, use the replace method to replace the string.

How to remove characters in javascript

The operating environment of this article: Windows 7 system, JavaScript version 1.8.5, DELL G3 computer.

Create a new html file, named test.html, to explain how to use js to remove specified characters from a string.

How to remove characters in javascript

In the test.html file, use the input tag to create a string input box and set its id attribute to myinput.

How to remove characters in javascript

In the test.html file, use the button tag to create a button with the button name "Remove www characters".

How to remove characters in javascript

In the test.html file, bind the onclick event to the button button. When the button is clicked, the del() function is executed. [Recommended learning:js basic tutorial]

How to remove characters in javascript

In the test.html file, in the js tag, create a del() function, in the function Inside, use getElementById() to obtain the input object, and then use the value attribute to obtain the content of the input box.

How to remove characters in javascript

In the test.html file, use the replace() method to replace the "www" string with nothing, save the replaced string in the res variable, and finally , use the alert() method to output the results.

How to remove characters in javascript

Open the test.html file in the browser, enter the string, click the button, and view the output results.

How to remove characters in javascript

The above is the detailed content of How to remove characters in javascript. 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