我有一个非常奇怪的问题。我的示例代码 [here][1] 运行良好,但我的 aptana 工作室编辑器中有完全相同的代码,当我在 Chrome 或 Eclipse 浏览器中尝试它时,事件不会触发。我无法想象有什么问题,因为它是完全相同的代码......
HTML
<!DOCTYPE html>
<html>
<head>
<title>OrderScreen</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="js/script.js" type="text/javascript"></script>
</head>
<body>
<a href="">Test</a>
</body>
</html>
jQuery
$("a").mouseup(function() {
clearTimeout(pressTimer);
// Clear timeout
return false;
}).mousedown(function() {
// Set timeout
pressTimer = window.setTimeout(function() {
alert("hcbdhaf")
}, 1000);
return false;
}).click(function() {
alert("dfsdg");
});