如何使用支柱阿賈克斯阿賈克斯的JSON JSON 1.2操作與父子頁面如何使用撐杆1.2操作與父子頁
我使用返回NULL在行動上。但它並不retrive的data.please如果可能的話給我答案需要今天晚上本身..先感謝
這是我的Java腳本編碼
的$(document) 。就緒( 功能( ){ 警報( 「內1」); $ (函數(){
$("select#feedTypeValue")
.change(
function() {
alert("inside 2");
$
.ajax({
type : 'GET',
url : 'IndexReviewAction.do?menuIndex=3',
data : {
feedTypeValue : $(
this)
.val()
},
dataType : 'JSON',
cache : false,
success : function(
j) {
var options = '';
for (var k = 0; k < j.length; k++) {
options += '<option value="' + j[k] + '">'
+ j[k]
+ '</option>';
}
警報( 「在對」); $ ( 「選擇#listValue」) .html( 選項);
}
});
});
});
});
這是我的操作Page編碼
字符串的FeedType =用request.getParameter( 「feedTypeValue」);
if(menuIndex!=null && menuIndex.equalsIgnoreCase("3"))
{
ArrayList listValue = new ArrayList(); 如果(的FeedType!= NULL){
if(feedType.equals("ADDA")){
listValue.add("ASD");
listValue.add("XSD");
}else{
listValue.add("QWE");
listValue.add("AZX");
}
String jsonResult = new flexjson.JSONSerializer()
.serialize(listValue);
response.setContentType("text/javascript");
response.getWriter().write(jsonResult);
//return Json(listValue,JsonRequestBehavior.AllowGet);
return null;
}
}
沒有你的問題的描述,以這種方式我是害怕沒有人會回答 – muneebShabbir
請詳細說明你的問題,如果可能的話粘貼你的代碼。 – Gerry
我在我的項目中使用上面的代碼..要檢索一個下拉列表值..當我選擇一個下拉根據該值我想檢索值的列表另一個下拉plz幫助我,如果它possibe – user2238900