get value from @Model inside jquery script

后端 未结 2 957
野趣味
野趣味 2020-12-17 18:49

How can I get value from @Model inside jquery script. I want to get some property by index(determined by row selection in my custom table) from my Model whic

相关标签:
2条回答
  • 2020-12-17 19:13

    use html5 data attributes in your view.. to make your model available in html then access them via js

    0 讨论(0)
  • 2020-12-17 19:22

    @Model is a .NET object (server-side), your JQuery scripts are running client-side and operate on JavaScript objects. You can't directly access server-side .NET objects from client-side code - you'll need to have some JSON serialization of your model (or maybe just the properties you're interested in). Then inside a script you can do something like

    var model = @Html.Raw(Json.Encode(Model))
    

    to get your model into a JavaScript variable, then access everything through "model".

    0 讨论(0)
提交回复
热议问题