gpt4 book ai didi

jquery - 从循环内获取 Jquery Toggle 按钮值

转载 作者:行者123 更新时间:2023-12-01 06:42:49 25 4
gpt4 key购买 nike

我试图在 php 循环中保留 3 个切换按钮,属性名称填充动态值。

enter image description here

通过使用Jquery onclick事件,我想捕获标题属性。代码如下:

<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<link href="https://cdn.jsdelivr.net/css-toggle-switch/latest/toggle-switch.css" rel="stylesheet" />
<style>
.switch-toggle {
width: 10em;
}

.switch-toggle label:not(.disabled) {
cursor: pointer;
}
</style>
</head>
<body>
<?php for($i=0;$i<3;$i++){ ?>
<div class="switch-toggle switch-3 switch-candy">
<input id="on" name="state-d" type="radio" checked="" title="A-101-<?php echo $i; ?>">
<label for="on" onclick="">ON</label>

<input id="na" name="state-d" type="radio" disabled checked="checked">
<label for="na" onclick="">N/A</label>

<input id="off" name="state-d" type="radio" title="A-202-<?php echo $i; ?>">
<label for="off" onclick="">OFF</label>

<a></a>
</div>
<p></p>
<?php } ?>


</body>

<script>
$(function() {
$(".switch-candy input[type='radio']").click(function(){
var title = $(this).attr('title');
alert(title);
});
});
</script>
</html>

每当我单击任何按钮时,我只会获得第一个按钮属性。我无法获取第二个和第三个切换按钮的属性。

任何建议都将受到高度赞赏。

谢谢

最佳答案

您的按钮上有重复的 idname 属性,这将使您的 HTML 无效,并且 javascript 会将它们视为一个单选按钮,因此您必须添加当前的 for 循环计数器使 id 属性动态化并防止重复。

这是有效的 HTML 版本:

<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<link href="https://cdn.jsdelivr.net/css-toggle-switch/latest/toggle-switch.css" rel="stylesheet" />
<style>
.switch-toggle {
width: 10em;
}

.switch-toggle label:not(.disabled) {
cursor: pointer;
}
</style>
</head>
<body>
<div class="switch-toggle switch-3 switch-candy">
<input id="on-0" name="state-d-0" type="radio" checked="" title="A-101-0">
<label for="on-0" onclick="">ON</label>

<input id="na-0" name="state-d-0" type="radio" disabled checked="checked">
<label for="na-0" onclick="">N/A</label>

<input id="off-0" name="state-d-0" type="radio" title="A-202-0">
<label for="off-0" onclick="">OFF</label>

<a></a>
</div>
<p></p>
<div class="switch-toggle switch-3 switch-candy">
<input id="on-1" name="state-d-1" type="radio" checked="" title="A-101-1">
<label for="on-1" onclick="">ON</label>

<input id="na-1" name="state-d-1" type="radio" disabled checked="checked">
<label for="na-1" onclick="">N/A</label>

<input id="off-1" name="state-d-1" type="radio" title="A-202-1">
<label for="off-1" onclick="">OFF</label>

<a></a>
</div>
<p></p>
<div class="switch-toggle switch-3 switch-candy">
<input id="on-2" name="state-d-2" type="radio" checked="" title="A-101-2">
<label for="on-2" onclick="">ON</label>

<input id="na-2" name="state-d-2" type="radio" disabled checked="checked">
<label for="na-2" onclick="">N/A</label>

<input id="off-2" name="state-d-2" type="radio" title="A-202-2">
<label for="off-2" onclick="">OFF</label>

<a></a>
</div>
<p></p>


</body>

<script>
$(function() {
$(".switch-candy input[type='radio']").click(function(){
var title = $(this).attr('title');
alert(title);
});
});
</script>
</html>

对于 PHP 代码应该是这样的:

    <html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<link href="https://cdn.jsdelivr.net/css-toggle-switch/latest/toggle-switch.css" rel="stylesheet" />
<style>
.switch-toggle {
width: 10em;
}

.switch-toggle label:not(.disabled) {
cursor: pointer;
}
</style>
</head>
<body>
<?php for($i=0;$i<3;$i++): ?>
<div class="switch-toggle switch-3 switch-candy">
<input id="on-<?php echo $i; ?>" name="state-d-<?php echo $i; ?>" type="radio" checked="" title="A-101-<?php echo $i; ?>">
<label for="on-<?php echo $i; ?>" onclick="">ON</label>

<input id="na-<?php echo $i; ?>" name="state-d-<?php echo $i; ?>" type="radio" disabled checked="checked">
<label for="na-<?php echo $i; ?>" onclick="">N/A</label>

<input id="off-<?php echo $i; ?>" name="state-d-<?php echo $i; ?>" type="radio" title="A-202-<?php echo $i; ?>">
<label for="off-<?php echo $i; ?>" onclick="">OFF</label>

<a></a>
</div>
<p></p>
<?php endfor; ?>


</body>

<script>
$(function() {
$(".switch-candy input[type='radio']").click(function(){
var title = $(this).attr('title');
alert(title);
});
});
</script>
</html>

关于jquery - 从循环内获取 Jquery Toggle 按钮值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62199598/

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