富贵资源网 Design By www.hznty.com

自定义函数参数传递为 字符串格式 ,传递方式
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 (&quot你好three&quot)"> 

</form> 
</body> 
</html>
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com