本文實(shí)例講述了jQuery+php實(shí)時獲取及響應(yīng)文本框輸入內(nèi)容的方法。分享給大家供大家參考,具體如下:
該程序能夠查出可用余額:
HTML部分:
<input type="text" name="username" id="username"
onkeyup="search_func(this.value);" />
<em id="mfee"></em>
jquery部分:
function search_func(value){
$.post("/xxx.php", { q: "action/cash_news", username:value},function (result){
var r = "可用金額"+result+"元";
$("#mfee").html(r);
$("#moneyss").val(result);
});
}
希望本文所述對大家jQuery程序設(shè)計有所幫助。