我尝试将ListData中的List Category传递给jquery,但我没有取得任何成功:
查看:
<script type="text/javascript">
$(document).ready(function() {
var timerid;
$("#new-title").on("input", function (e) {
var value = $(this).val();
if ($(this).data("lastval") != value) {
$(this).data("lastval", value);
clearTimeout(timerid);
timerid = setTimeout(function () {
var _catJson =JSON.parse('@Html.Raw(Json.Encode(this.ViewData["Category"]))');//?????????
alert(_catJson);
}, 1000);
}
});
});
</script>
@*test succsessful:*@
@ViewData["Category"]
错误:未捕获的SyntaxError:意外的令牌K(匿名函数)@(索引):178