所以我做了一个游戏,在我的游戏中有一个激活部分的项目。所以他们可能会像垃圾邮件一样多次点击激活按钮,这会导致一些错误。知道如何避免它吗?
此激活部分不像提交表单,就像它们单击它一样,此功能可以工作并激活该事物。有什么建议我可以做些什么吗?
这是他们激活的方式
和php部分就是这样的。所以这个点击部分在php里面。
if($idd->is_active == 0){
echo "<a href='/item/activate/".$s."'>Aktifleştir</a>";
}
elseif($idd->is_active == 1){
echo '<a href="/item/de-activate/'.$s.'">Pasifleştir</a>';
}
答案 0 :(得分:1)
这是如何防止多次触发jQuery事件的示例
HTML:
<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
<a href="#second" class="ui-btn-right">Next</a>
</div>
<div data-role="content">
<a data-role="button" id="test-button">Click me</a>
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
</div>
</div>
<div data-role="page" id="second">
<div data-theme="a" data-role="header">
<h3>
Second Page
</h3>
<a href="#index" class="ui-btn-left">Back</a>
</div>
<div data-role="content">
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
</div>
</div>
</body>
</html>
JS:
$(document).on('pageinit', '#index', function(){
$(document).on('click', '#test-button',function(e) {
alert('Button click');
});
});