D3 mousedown在加载时触发

时间:2014-04-28 20:02:32

标签: d3.js

mousedown和mouseup在加载时触发,然后不再触发。 我在这里做错了什么。 任何提示赞赏。

-------- mousecrazy.js ----------

yesClick = function() {
    alert("always");
}

var svgbox = d3.select('body')
    .append('svg')
    .attr('width', 500)
    .attr('height', 250)
    .on("mousedown", yesClick())
    .on("mouseup", yesClick());

-------- mousecrazy.html ----------

<html>
<head>
    <script src='http://d3js.org/d3.v3.min.js'></script>
    <script src="js/mousecrazy.js"></script>
    <title>mousecrazy</title>
</head>
<body>

</body>
</html>

0 个答案:

没有答案