如果按钮单击已经单击一次,如何禁用它。
我有一个汽车市场,经销商可以上传汽车。问题是经销商提供重复列表,我想限制..
干杯
答案 0 :(得分:0)
看看(jQuery Cookie)插件。它使得使用cookie非常简单。
单击时检查cookie是否存在,但第一次不存在时创建cookie。
下次它会出现,所以禁用按钮。
$(document).click(function(e)){
$('button').click(function){
if($.cookie('the_cookie') == null){
//do your thing
$.cookie('the_cookie', 'the_value',{ expires: 1 });
}else if($.cookie('the_cookie') != null){
e.preventDefault();
$("button").attr("disabled", true);
}
}
}