我有一部守则,在出现错误时,阻止模式开张,但问题是,即使有错误,如何在出现错误时阻止它今后开张?
Here is the code:
jQuery(".link").click(function(a){
var newVal2 = jQuery("#appID").val();
if(error === 1 || defaultVal2 === newVal2){
alert("Please fill in a valid App ID.");
a.preventDefault();
}
else {
//Access Token Modal
jQuery(".link").colorbox({inline:true, width:"90%"});
a.preventDefault();
//Access Token Modal CLOSING
}
});
P.Scolor Box
is the Format plugin.