Core tips: JavaScript functions with parameters
<ptml> <pead> </pead> <body> <form> <input type= "button" value= "Call function" > </form& Gt <p> by clicking on this button, you can call a function with parameters. This function will output this parameter. </p> </body> </ptml>
By clicking on this button, you can call a function with parameters. This function will output this parameter.
<ptml> <br/><pead> <br/><script type= "Text/javascript" > <br/>function MyFunction (TXT) <br/>{<br/>alert (TXT) <br/> <br/></script> <br/></pead> <br/><body> <br/><form> <br/><input type= "button" <br/> <br/>value= In the Morning "> <br/><input type=" button "<br/> <br/>value=" at night "> <br/></form> <br/ ><p> by clicking this button, you can call a function. The function outputs the arguments passed to it. </p><br/></body> <br/></ptml><br/><br/>
By clicking on this button, you can call a function. The function outputs the arguments passed to it.