我正在尝试根据先前选择的下拉菜单更改下拉菜单。我可以用 jQuery 编写函数。
由于我无法在基于服务器的各种安装中使用 URL 路径,因为我必须将 URL 硬核到脚本中。
<script type="text/javascript">
function getCategory(){
var industryId = $("#CompanyCompanyIndustryId").val();
$.getJSON('http://localhost/gitgrow/users/fetch/'+industryId, function(data) {
var options = '';
$.each(data, function(key, value) {
options += '<option value="' + key + '">' + value + '</option>';
});
$("#CompanyCompanyCategoryId").html(options);
})
}
</script>
如何使用 CakePHP 和 JS 组件实现相同的功能?