单片机是ATXMEGE64D3,编程中使用到double类型数据,但出现警告如下:
Warning: E:\interface.c(56): the 'double' data type will be supported only in the 'Professional' version, defaulting to 'float'
实际测试中,确实将我的double类型的数据全部默认为f
$(function(){
var appid = $(".select li a").data("channel");
$(".select li a").click(function(){
var appid = $(this).data("channel");
$('.select dt').html($(this).html());
$('#channel').val(appid);
})
})
评论