0

リンクをクリックして div を開きたいと思います。リンクの値にはデータ行の ID が含まれています。データをフォームに投稿するために ajax を使用しています。

template.html

<div id="authorisedreporter" {% if not registerform.errors %}style="display:none"{% endif %}>
 <form method="post" action="." id="reporter-form">
 {% csrf_token %}
 <table  width="100%">
 <tr>
   <td style="width:100px;">First name:</td><td>{{registerform.first_name}} </td>
 </tr>
 <tr>
    <td>Last name:</td><td>{{registerform.last_name}} </td>
 </tr>
     ''''''''''''''''
     some data here
     '''''''''''''''
 </table></form></div>

上記のdivはページ読み込み時に非表示の状態になっています。リンクをクリックしたときにdivを開きたいです。

<td style="width:120px;"><a href="{{ list.0.id }}">{{list.0.first_name|title}} {{list.0.last_name}}</a></td>

助けが必要。

4

2 に答える 2

1

最初に href="#"またはhref="javasctipt:void(0)アンカータグに入れid、アンカータグの他の属性に入れます。スクリプトは次のようになります

$(document).ready(function(){
   $('a').click(function(){
      $('#authorisedreporter').show();
   });
});
于 2013-07-26T11:01:17.670 に答える