2012-10-19 48 views
0

我試圖在功能中顯示使用多個參數的結果,但是我的代碼無法顯示結果。任何人都可以幫助我知道我做錯了什麼嗎?帶功能的多個參數不起作用

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head> 
<title>How to write JavaScript?</title> 

<script type="text/javascript"> 

// Using multiple parameters with function 
function result(number1, number2, number3) 
{ 
    document.write("your luck number is " + number1 + number2 + number3); 
} 


</script> 

</head> 

<body> 
<hr> 
<h2>Using multiple parameters with function</h2> 
<input type="button" value="Result" onclick=result(3, 6, 9);> 


</body> 
</html> 

回答

1

您忘記將內聯JavaScript放入"。 使用這個來代替:

<input type="button" value="Result" onclick="result(3, 6, 9);"> 

example fiddle