我正在製作一個窗體,它在按鈕的幫助下切換(隱藏並顯示),但它不起作用。任何人都可以請檢查我的代碼,並告訴我爲什麼我的腳本不工作。我的代碼如下jquery切換功能不起作用
$(document).ready(function() {
$("#add_facility").click(function() {
$("#facility-form").toggle('slow');
});
});
\t
\t .facility-form {
background-color: #e3edfa;
padding: 4px;
cursor: initial;
display: none;
}
<button class="btn" id="add_facility">
<i class="fa fa-plus" aria-hidden="true"></i>
Add Facilities
</button>
<div class="facility-form">
<form id="facility-form1">
<div class="row">
<div class="col-md-4">
<div class="checkbox">
<label>
<input type="checkbox" value="">Internet
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="">Bar
</label>
</div>
</div>
<div class="col-md-4">
<div class="checkbox">
<label>
<input type="checkbox" value="">Free Wifi
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="">Spa
</label>
</div>
</div>
</div>
</form>
</div>
請閱讀[如何格式化我的代碼塊?](http://meta.stackoverflow.com/questions/251361/how-do-i-format-my-code-blocks) – Liam
請注意format你的問題正確。這幾乎是不可讀的 –
*不工作*如何? – Liam