将值传递给javascript onClick()

时间:2013-03-12 08:19:32

标签: javascript jquery html html5

我有一个带有一些链接的网站。当用户点击每个链接时,它应该传递不同的整数值,我可以在.js文件中使用。  我必须在这些整数值的基础上进行一些操作。 请帮忙!!!

2 个答案:

答案 0 :(得分:10)

虽然这个问题最有可能被关闭。您可以调用函数并将整数作为参数传递。

试试这个

 <a href="#"  onclick="yourFunction('1')">click1</a>
 <a href="#"  onclick="yourFunction('2')">click2</a>

的javascript

 function yourFunction(intValue){
   alert(intValue);
}

答案 1 :(得分:0)

<!DOCTYPE html>
<html>
<head>
    <title>Functions</title>
</head>
<body>
<script type="text/javascript">

function add(firstnum,secondnum) {
     document.write(firstnum+secondnum);
}

</script>
<h1>onclick Function called</h1>
<input type="button" value="Sum Me" onclick="add(2,3)" />
</body>
</html>

输出:

5