1

私はasp.net mvc 4が初めてです。

ヘッダーとラインテーブルの2つのテーブルがあります。ヘッダー テーブルには質問が格納され、ライン テーブルには回答が格納されます。この調査アプリケーションでは、ユーザーは質問を入力し、その後回答を入力します。ユーザーは複数の回答を追加でき、送信する前にそれらの一部を削除できます。

これを行う最善の方法は何ですか、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>
4

1 に答える 1

0

Knock Out MVC ライブラリを見てください。この例は、あなたがやりたいことのほとんどです。他にも、よく文書化された例やチュートリアルがオンラインでたくさんあります。

于 2012-08-04T09:45:17.720 に答える