1 回答

TA貢獻(xiàn)1866條經(jīng)驗(yàn) 獲得超5個(gè)贊
您可以在更改偵聽器外部定義它,并在內(nèi)部調(diào)用它
saveStato();
或者干脆完全去掉這個(gè)功能,然后就可以了
$('.inServizio').change(function() {
if($(this).prop('checked')){
console.log('TEST_ON')
$.post("inServizio.php",{stato: $("SI").val()},function(data,status){
document.getElementById("saveWarningText").innerHTML = data;
$( "#saveWarningText" ).fadeIn(100);
setTimeout(function(){ $( "#saveWarningText" ).fadeOut(100); }, 3000);
});
} else {
//rest of your code
}
- 1 回答
- 0 關(guān)注
- 165 瀏覽
添加回答
舉報(bào)