JS in try: Catch.. Usage of

Source: Internet
Author: User

try to test the code block for errors.

The catch statement handles the error.

throw creates and runs out of error.

Try   {   //Run code here     throws an error   } catch (Err)   {   //Handle error here   }

Here is an example:

<P>Please output a number from 5 to 10:</P><inputID= "Demo"type= "text"><Buttontype= "button"onclick= "myFunction ()">Test input</Button><PID= "Mess"></P></Body></HTML><Scripttype= "Text/javascript">    functionmyFunction () {Try{         varx=document.getElementById ("Demo"). Value; Take the value of the elementif(x=="")    Throw "value is empty"; Throws an error based on the obtained valueif(IsNaN (x))Throw "not a number ."; if(x>Ten)     Throw "too Big"; if(x<5)      Throw "too small"; }    Catch(err) {vary=document.getElementById ("mess"); Catch the error above throw throw, give P label display y.innerhtml="Error:" +Err+ ". "; }}</Script>

JS in try: Catch.. Usage of

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.