假设我必须创建一个登录系统,在该系统中,仅在按下一次按钮后才能登录。在Javascript中,我认为这并不容易,因为没有常用的方法。
谁能提供线索?
$value = Session::get($something);
if(!isset($value)){
var ctr = 0;
function cnt() {
ctr++;
if(ctr==5) {
alert("did it");
}
}
答案 0 :(得分:0)
也许像这样https://jsfiddle.net/opcbnswe/2/
$('#btn').on("click", function() {
$.data(this, "counter", ($.data(this, "counter") || 0) + 1);
if ($.data(this, "counter") === 5) {
alert("5 times");
}
});