很久以前做過(guò),記不太清怎么實(shí)現(xiàn)的了,好像是給對(duì)應(yīng)的文本框價(jià)格keydown事件,然后無(wú)刷新的獲取新數(shù)據(jù)
創(chuàng)新互聯(lián)是一家專(zhuān)注于成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),湟中網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:湟中等地區(qū)。湟中做網(wǎng)站價(jià)格咨詢(xún):028-86922220
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
html
head
titlecheckbox/title
script src="js/jquery-1.3.2.js" type="text/javascript"/script
script src="js/1.js" type="text/javascript"/script
/head
body
table id="table1"
tr
tdinput type="checkbox" value="1"/1/td
td id="k_1"input type="text" name="student" id="s_1" readonly="true"http://td
/tr
tr
tdinput type="checkbox" value="2"/2/td
td id="k_2"input type="text" name="student" id="s_2" readonly="true"http://td
/tr
tr
tdinput type="checkbox" value="3"/3/td
td id="k_3"input type="text" name="student" id="s_3" readonly="true"http://td
/tr
tr
tdinput type="checkbox" value="4"/4/td
td id="k_4"input type="text" name="student" id="s_4" readonly="true"http://td
/tr
/table
/body
/html
-------------------------------------------------------------
$(document).ready(function() {
$("td[id^='k_']").hide();
var check = $(":checkbox"); //得到所有被選中的checkbox
var actor_config; //定義變量
check.each(function(i){
actor_config = $(this);
actor_config.click(
function(){
if($(this).attr("checked")==true){
$("#k_"+$(this).val()).show();
}else{
$("#k_"+$(this).val()).hide();
}
}
);
});
});
function noconditiontishi1(){ $("#selectfundsname1").autocomplete({ //提示 minLength: 0, contentType : 'application/x-www-form-urlencoded; charset=utf-8', source:function(request,response){ $.ajax({ url:"/fund/supermarket/tishi...
這是jsonp獲取數(shù)據(jù),將數(shù)據(jù)傳遞給了window.baidu.sug這個(gè)方法,所以,你自己創(chuàng)建這么一個(gè)函數(shù),參數(shù)是個(gè)json對(duì)象,對(duì)數(shù)據(jù)如何操作,你就寫(xiě)在函數(shù)里面,(json如何用,百度)然后用eval或者其他的方式解析你得到的字符串,它就會(huì)自動(dòng)調(diào)用你的函數(shù)。