當getjson發生更新時,文本框文本發生更改! 沒有allert是comminh了..有人可以幫助我這個警報? 文本框:更改值時發出警報設置間隔
<input id="your_textbox" />
setInterval(function() {
$.getJSOg('/api/my_apiurl', function (Payload) {
$(Payload).each(function (i, item) {
$("#your_textbox").val(item.CR_DateTime);
});
});
}, 3000);
和腳本阿勒特「haai:
setInterval(function() {
jQuery('#your_textbox').on('input', function() {
alert('haai');
});
}, 3000);
更改爲(不工作):
setInterval(function() {
var check;
$(function(checkForMessages) {
$.getJSON('/api/myapiurl', function (data) {
if(data == 1) {
//There are new messages
clearInterval(check);
alert("You have mail!");
}
}
);
check = setInterval(checkForMessages, 3000);
});
}, 3000);
是的,在apicall工作和值your_textbox改變(日期) – user2385302
的問題是:我期待FO的解決方案「有一個新的消息,」希望這個西港島線幫助我的問題.. – user2385302