在这里,我无法将dropdownList
Yii 添加到 jQuery 中的 append 方法。这是我的代码
$(document).ready(function(){
$(".tasks-add").click(function () {
$('.tasks').append('<li class="elements"><?php echo $form->labelEx($modelAcademics, 'Academic'); ?><?php echo $form->dropDownList($modelAcademics, '[]academics', array('school', 'college'));?></li>');
});
});
但我可以添加textField
而不是dropdownList
。谁可以帮我这个事 ?