У меня есть требование, когда я создаю переключатели динамически на основе ответа JSON. Пока что я работал в Chrome и firefox, но дает Object doesn't support this property or method
на if(subItem[1].indexOf(",") >= 0)
строке
Мой код
$("#sList").live("change", function(){
var currentService=this.value;
var c1Svc=[];
var c2Svc=[];
if(absP.length==2)
{
$.each(compareServiceData,function(i,item){
if(currentService==item[0])
{
var configCount=0;
$.each(item[1],function(j,subItem){
var temp=subItem[1];
/*The JSON response contains List of Lists, so here if it contains a list it will be separated by "," so split it and store in a array, else directly store in a array*/
if(subItem[1].indexOf(",") >= 0)
{
var tList=temp.split(",");
$.each(tList,function(k,val){
if(configCount==0)
{
c1Svc.push(val);
}
else
{
c2Svc.push(val);
}
});
}
else
{
if(configCount==0)
{
c1Svc.push(subItem[1]);
}
else
{
c2Svc.push(subItem[1]);
}
}
configCount++;
});
}
});
if ($("#customServiceListing").length == 0)
{
$("#compareContent").append('<table id="customServiceListing" align="center" width="90%" class="csm-table" border="1"><tbody><tr><td><form id="c1Service"></form></td><td><form id="c2Service"></form></td></tr></tbody></table>');
}
else
{
$('#c1Service').empty();
$('#c2Service').empty();
}
}
else
{
$("#compareContent").append('<table align="center" width="90%" class="csm-table" border="1"><tbody><tr><td><form><select id="c1Service"></select></form></td><td><select id="c2Service"></select></td><td><select id="c3Service"></select></td></tr></tbody></table>');
}
/*adding service radios to config1*/
$.each(c1Svc,function(i,item){
$("#c1Service").append('<input type="radio" name="customConfig1ServiceNames" id="'+item+'" value="'+i+1+'"/>'+item);
});
if(c1Svc.length>1)
$("#c1Service").append('<br/>');
/*adding service radios to config2*/
$.each(c2Svc,function(i,item){
$("#c2Service").append('<input type="radio" name="customConfig2ServiceNames" id="'+item+'" value="'+i+1+'"/>'+item);
});
if(c2Svc.length>1)
$("#c2Service").append('<br/>');
});
Обновление
Здесь - это список различных функциональных кодов, не поддерживаемых IE8
Обновление
В чем проблема здесь, для каждого значения, которое оно дает мне -1
Я использую код, данный Sudhir
alert(subItem[1].indexOf(",")+", "+subItem[1]);
Снимок экрана
Обновление
Получил его здесь, var temp=subItem[1].toString();
была проблема, преобразовывая его в String.