asp.net mvc 4 - 如何在同一视图中创建标题和行记录。在提交之前添加删除编辑记录

时间:2012-08-04 09:39:05

标签: jquery asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

我是asp.net mvc 4的新手。

我有2个表,标题和行表。标题表存储问题,行表存储答案。 在此调查应用程序中,用户将输入问题,然后将进入asnwers。用户可以添加多个答案,在提交之前,他可以删除其中一些答案。

最好的方法是什么,jquery,javascripts ......

我找不到最好的方法。

我的观点如下......

<div id="mysurvey">
    <div id="myquestion">
       -- in this section , there will be an image, and a text area
    </div>
    <div id="answers">
       <div id="answer1">
       -- in this section , there will be an image, and a text area
       </div>
       <div id="answer2">
       -- in this section , there will be an image, and a text area
       </div>
       <div id="answer3">
       -- in this section , there will be an image, and a text area
       </div>
    </div>
</div>

1 个答案:

答案 0 :(得分:0)

看看Knock Out MVC libraryThis example几乎就是你想要做的事情。在线还有很多其他记录良好的示例和教程。