returnÓëbreak

2014-11-24 02:53:04 ¡¤ ×÷Õß: ¡¤ ä¯ÀÀ: 2

width:400,
height:300,
layout:'form',
bodyStyle:'padding:10px',
labelWidth:70,
defaults:{anchor:'100%'},
items:[{
xtype:'iconcombo',
fieldLabel:'IconCombo',
store: store123,
valueField: 'countryCode',
displayField: 'countryName',
iconClsField: 'countryFlag',
triggerAction: 'all',
mode: 'local'
}],
buttons:[{
text: 'Ìá½»',
handler: function() {

//·½Ê½Ò»:½øÐбéÀúcombobox½øÐÐɾ³ý
//·½Ê½¶þ£ºÊ¹ÓÃcomboboxʼþ½øÐУ¬Ö±½Ó»ñÈ¡index£¬È»ºó½øÐÐɾ³ý
var count=store123.getTotalCount();
for(var k=0;k if(store123.getAt(k).get('countryName')=='United States'){
store123.remove(store123.getAt(k));
break;
/*
ΪÁËÌá¸ßÐÔÄÜ£¬×¢ÒâÔÚforºÍwhileÖÐʹÓÃbreakºÍcontinue¹Ø¼ü×Ö¡£
ÔÚÕâÀï×¢ÒâbreakºÍreturnµÄÇø±ð
break½áÊøµÄÊÇÑ­»·
return½áÊøµÄÊDZ¾´Î·½·¨¡£
*/
}
}
}
}]

×÷Õß¡°shijinling87807697¡±