首頁 >web前端 >js教程 >javascript自訂函數參數傳遞為字串格式_javascript技巧

javascript自訂函數參數傳遞為字串格式_javascript技巧

WBOY
WBOY原創
2016-05-16 16:40:561573瀏覽

自訂函數參數傳遞為 字串格式 ,傳遞方式
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>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn