報錯的內容:php
Uncaught TypeError: Cannot read property 'toLowerCase' of undefinedajax
解決方案:post
參考的url:this
http://stackoverflow.com/questions/23723005/uncaught-typeerror-cannot-read-property-tolowercase-of-undefinedurl
對象沒有正確:spa
incorrect:code
$("#type").change(function(){
//獲取選中的
if($(this).val()==''){
return;
}
var choose= new Array();
$("input[name='choose[]']:checkbox").each(function(){
if($(this).prop("checked") == true){
choose.push($(this).val());
}
});
if(choose == ''){
layer.msg("沒有選中頻道",{icon:2,time:2000});
return ;
}
layer.confirm('肯定要將選中的頻道添加到該機型中?', {icon: 3, title:'提示'}, function(index){
$.ajax({type:"post",timeout:"<?php echo TIMEOUT;?>",url:"<?php echo base_url('channel/defchanneladd');?>",
data:{choose:choose,tvmodel_id:$("#this").val()},success:function(data){
var obj = JSON.parse(data);
layer.msg(obj.msg, {icon: obj.code,time:1000},function(){
if(obj.code == '1'){
window.location.reload();
}
});
}});
});
});
上圖中的this對象已經變了。注意這一點對象
將this修改爲#type ,也就是select標籤便可input