问题
Trying to get a simple show/hide going.. Its working in js fiddle just not in my app..
In my views/user_steps/interests.html.erb
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="2" />
Valentine Day
</label>
<div style="display:none;">
Whatever you have to capture here<input type="text" id="foo" />
</div>
</br>
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="3" />
Easter
</label>
<div style="display:none;">
Whatever you have to capture here<input type="text" id="foo1" />
</div>
</br>
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="4" />
Mother Day
</label>
<div style="display:none;">
Whatever you have to capture here<input type="text" id="foo2" />
</div>
</br>
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="5" />
Father's Day
</label>
<div style="display:none;">
Whatever you have to capture here<input type="text" id="foo3" />
</div>
</br>
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="6" />
Halloween
</label>
<div style="display:none;">
Whatever you have to capture here<input type="text" id="foo4" />
</div>
</br>
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="7" />
Thanksgiving
</label>
</br>
<label class="checkbox">
<input id="user_holiday_ids_" name="user[holiday_ids][]" type="checkbox" value="8" />
Christmas
</label>
In my assets/javascripts/user_steps.js:
$(".checkbox").click(function(){
$(this).next("div").toggle();
});
回答1:
Don't duplicate IDs for DOM elements. ID should be unique on the page, and if it's not, javascript selectors can become unreliable.
来源:https://stackoverflow.com/questions/10568109/jquery-not-working-in-rails-3-2-app