私は次のHTMLを持っています:
<div class="section_rows">
<div class="body-row crew">
<input type="text" class="col1" name="cast_person" value="{{cast.person }}"/>
<input type="text" class="col2" name="cast_character" value="{{ cast.character }}"/>
<input class="ordering" type="hidden" name="cast_ordering" value="{{ cast.ordering }}" />
<a href="#;" class="delete">X</a>
</div>
</div>
そして次のjQuery:
// drag and drop of cast and crew
$('.section_rows').sortable();
$( ".section_rows" ).disableSelection();
section_rows
現在、これによりdivコンテナ全体が無効になります。その中のをどのように有効にinput
しますか?