gpt4 book ai didi

javascript - 开启 JQuery 切换按钮

转载 作者:行者123 更新时间:2023-11-30 09:52:41 28 4
gpt4 key购买 nike

我需要 JQuery 方面的帮助,我是编程的初学者。 我需要的是当我点击一个特定的按钮时,描述会出现,但是当我点击一个按钮时它们会同时出现。请帮助。谢谢 :)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").toggle(500);
});
});
</script>


<body>


<?php
include ("includes/connect.php");

$query ="select * from jobshiring ";
$run = mysql_query($query);

while ($row=mysql_fetch_array ($run)) {
$job_ID = $row['job_ID'];
$job = $row['job'];
$description = $row['description'];
?>

<table >
<tr align="left">
<td > <button> <?php echo $job; ?> </button></td>
<td > <p> <?php echo $description; ?> </p> </td>
</tr>
<?php } ?>
</table>

最佳答案

将您的按钮点击处理程序更改为

$("button").click(function(){
$(this).parent().next().find("p").toggle(500);
});

需要遍历到下一栏的段落

关于javascript - 开启 JQuery 切换按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35549327/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com