从后台ViewBag.GetMessageTo=GetMessageTo();一个字符串到前台,jquery处理》
$(document).ready(function () {
var Advices = '@ViewBag.GetMessageTo';
var mes = Advices.split(',');
if (mes != undefined) {
for (var i = 0; i < mes.length; i++) {
if (mes[i] != '') {
if (mes[i] == "测量结果") {
}
if (mes[i] == "我的计划") {
$("#myPlan").show();
}
if (mes[i] == "健康建议") {
}
if (mes[i] == "健康报告") {
}
if (mes[i] == "健康档案") {
}
if (mes[i] == "专家咨询") {
}
}
}
}
});