0
這是鏈接http://jsfiddle.net/susxK/124/ 當我點擊客戶服務沒有發生任何事情時,任何人都可以幫我解決這個問題。展開/摺疊不工作在html中使用java腳本
預期輸出:
clicking the customer services i want to show the full table.In the same way collapse.
這是鏈接http://jsfiddle.net/susxK/124/ 當我點擊客戶服務沒有發生任何事情時,任何人都可以幫我解決這個問題。展開/摺疊不工作在html中使用java腳本
預期輸出:
clicking the customer services i want to show the full table.In the same way collapse.
這將顯示和隱藏你的表
$(document).ready(function() {
$(".form-matrix-table").hide();
$(".form-label,form-label-top").click(function() {
$(".form-matrix-table").toggle();
});
});
只需添加的onclick = 「名稱()」 監聽到你的html代碼:
onclick =「d()」
HTML
<label class="form-label form-label-top" onclick="d()" id="label_5" for="input_5"> Customer Services </label>
CSS
#cid_5{
display:none;
}
JS
function d()
{
$("#cid_5").fadeToggle();
}
如果我有不同類別的多個表是指使用單一功能如何寫假設$(」 .FORM矩陣表1" )隱藏(); $(「。form-label,form-label-top1」)。click(function(){(「。form-matrix-table1」)。toggle(); }); – care567
對不起,你在說什麼? – Ankita
假設我有多個不同的類名如何編寫隱藏()所有和點擊功能() – care567