PHP群:95885625 Hbuilder+MUI群:81989597 站长QQ:634381967
    您现在的位置: 首页 > 开发编程 > JavaScript教程 > 正文

    javascript自定义函数参数传递为字符串格式

    作者:admin来源:网络浏览:时间:2020-09-30 00:07:50我要评论
    导读:自定义函数参数传递为 字符串格式 ,传递方式1:用this传递2:引号缺省3:转义字符(html中 " 代表"双引号,'代表单引号,javascri...
    自定义函数参数传递为 字符串格式 ,传递方式

    1:用this传递 
    2:引号缺省 
    3:转义字符(html中 " 代表"双引号,'代表单引号,javascript中直接\" 和Java通用转义字符集)

    <html> 
    <head> 
    <script language="LiveScript"> 
    function print(arg){ 
    alert("你好!"+arg); 
    } 
    </script> 
    </head> 
    <body> 
    <form> 
    <input type="button" name="Button1" value="first" onclick="print(this.str)" str="你好one"> 
    <br><br> 
    <input type="button" name="button2" value="second" onclick=print("你好two")> 
    
    <br><br> 
    <input type="button" name="button3" value="Third" onclick="print ("你好three")"> 
    
    </form> 
    </body> 
    </html>

    转载请注明(B5教程网)原文链接:https://b5.mxunkeji.com/content-69-2268-1.html
    相关热词搜索: