JQM Toggle switch、selectmenu动态设置默认选中值时没有效果的问题

阅读更多
静态时,ok,没问题,如下:

		


动态时需要jquery选择:
var storeNotification="on";
$("#swicher option[value='"+storeNotification+"']").attr("selected",true);
如果只写上面这句话时,不会有任何效果,需要加上下面这句:
$('#swicher').slider("refresh");

事实上,很多JQM控件在动态添加或删除时都有这样的问题,需要及时"refresh"。
见 http://hi.baidu.com/life_to_you/item/bf3621365fa5974b033edcbc

下面是selectmenu的“refresh”



	var d = new Date();
	var year=d.getFullYear();
	var month=d.getMonth()+1;
	var day=d.getDate();
//	log(year+"-"+month+"-"+day);
	var days=31;

	$("#change_birthday_page #month").empty();
	$("#change_birthday_page #month").append("");
	for(var i=1;i<13;i++){
		$("#change_birthday_page #month").append("");
	}
	$("#change_birthday_page #day").empty();
	$("#change_birthday_page #day").append("");
	for(var i=1;i"+i+"");
	}
	$("#change_birthday_page #year").empty();
	$("#change_birthday_page #year").append("");
	for(var i=1970;i"+i+"");
	}
	
	$("#change_birthday_page #month").selectmenu( "refresh" );
	$("#change_birthday_page #day").selectmenu( "refresh" );
	$("#change_birthday_page #year").selectmenu( "refresh" );



navbar动态生成不刷新?
http://blog.csdn.net/danielinbiti/article/details/27333311

你可能感兴趣的:(html)