页面效果:
html代码:
js代码:
#define layuiFunc() form.on('select(myselect)', function(data){ var themeId=data.value; $.ajax({ type: 'POST', url: '#(path)/portal/golf/station/queryBythemeId?isJson=true', data: {'themeId':themeId}, dataType: 'json', success: function(data){ $("#station_id").html(""); var option=$("<option>").val("").text("赛事分站"); $("#station_id").append(option); form.render('select'); $.each(data, function(key, val) { var option1 = $("<option>").val(val.id).text(val.stationName); $("#station_id").append(option1); form.render('select'); }); $("#station_id").get(0).selectedIndex=0; } }); }); #end