我是JQuery的新手。有兩個HTML元素(P和輸入)。點擊一個按鈕,我想隱藏這兩個元素。兩者具有相同的類名。 簡單的代碼不起作用。 請提出任何建議。隱藏所有具有類名的元素
感謝很多 納特
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Demo</title>
</head>
<body> <a href="http://jquery.com/">jQuery</a>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#hide#").click(function() {
$(.test).hide();
});
$("#show").click(function() {
$(.test).show();
});
});
</script>
<p class="test">Hello this is P element that I am trying to hide using its class</p> First name:
<input class="test1" type="text" name="fname">
<button id="hide">Hide</button>
<button id="show">Show</button>
</body>
</html>
使用引號'$( 「測試 」)的'$'和'而不是$(「 #隱藏 」)'(「 #隱藏#」)' – Satpal 2015-03-31 16:48:49
^^那,並在* #hide - '$(「#hide」)之後移除散列*另外,它們實際上並沒有相同的類。檢查輸入類;) – Archer 2015-03-31 16:51:10