如何使用取自 ViewBag 的名称生成 javascript 函数?我正在尝试以下
@{ (ViewBag.ModuleId + "DatePickerStartDateChange = function() {console.log('asdf');};");}
并希望它会在 html 输出中发出 javascript 作为
xxxxxxDatePickerStartDateChange = function() {alert("asdf");};
如何使用取自 ViewBag 的名称生成 javascript 函数?我正在尝试以下
@{ (ViewBag.ModuleId + "DatePickerStartDateChange = function() {console.log('asdf');};");}
并希望它会在 html 输出中发出 javascript 作为
xxxxxxDatePickerStartDateChange = function() {alert("asdf");};