javascript参数传递字符串

自定义函数参数传递为 字符串格式 ,传递方式
1:用this传递 
2:引号缺省 
3:转义字符(html中 " 代表"双引号,'代表单引号javascript中直接\" 和Java通用转义字符集) 

 
 
     
 
 
 
   print(this.str)" str="你好one"> 
 

 

  print("你好two")> 



 

  button3" value="Third" οnclick="print ("你好three")"> 

   

 

你可能感兴趣的:(Javascript)