Set the input tag to accept decimal number in html5

DescriptionThe type of number in input, looks like a text field but allows only floating-point numbe...
Jan 31, 2021 Javascript Comments 0

Material-UI makeStyles function causes compilation error: No overload matches this call

IssueIn the React + TypeScript + Material-UI project, using the makeStyles method, the code is as fo...
Sep 24, 2020 Javascript Comments 0

Ways to clear an existing array in Javascript

There are some ways to empty an existing array in Javascript.1. Init arrayA = [];This code will set ...
May 10, 2020 Javascript Comments 0

Make the raw body in jQuery Ajax

Using jQuery's $.ajax function to post data to server, The default Content-Type is application/x-www...
Mar 05, 2020 Javascript Comments 0

Using JavaScript or jQuery Check/Uncheck checkbox

Here are a few ways to checked or unchecked a checkbox using javascript or jquery.Using checkedWe ca...
Feb 13, 2020 Javascript Comments 0

jQuery select all except first or a specific one

Use jquery's selector and related methods to select all elements but not include the first (or a spe...
Feb 07, 2020 Javascript Comments 0

Javascript call function by name string

Sometimes it is necessary to call functions dynamically. Use the string of the function name to exec...
Feb 05, 2020 Javascript Comments 0