我正在尝试将我的表单代码转换为常规选择框..但它在 form_dropdown 而不是常规选择框中工作..我认为我做错了什么..实际上我是代码点火器的新手..
这是我的两个下拉选择框..逻辑实际上是这样实现的,它根据前一个下拉列表显示第二个下拉列表中的选项..
<!-- Categories -->
<?php $items['#'] = 'Please Select'; ?>
Select a Category:
<?php echo form_dropdown('cat_id', $records2, '#','id="category" class = "cho"');?>
<!-- end of Categories -->
<!-- Items -->
Items: </label>
<?php echo form_dropdown('item_id', $records3 , '#', 'id="items" class="cho"'); ?>
<br />
<!-- end of Items -->
项目基于类别..我只是希望他们将这两个选择或下拉框转换为常规的 html 方式..
这是我的 javascript
<script type="text/javascript">// <![CDATA[
$(document).ready(function(){
$('#category').change(function(){
if (document.getElementById('items_chzn') != undefined) {
$("#items_chzn").remove();
$("#items").attr("class","");
//$("#items").show();
}
$("#items > option").remove();
var category_id = $('#category').val();
$.ajax({
type: "POST",
url: "stockInController/get_Items/"+category_id,
success: function(items)
{
$.each(items,function(item_id,item_name)
{
var opt = $('<option />');
opt.val(item_id);
opt.text(item_name);
$('#items').append(opt);
});
//alert("applying plugin");
$('#items').chosen({no_results_text: "No results matched"});
}
});
});
});