gpt4 book ai didi

html - Bootsnipp 单选按钮

转载 作者:行者123 更新时间:2023-11-28 03:07:10 26 4
gpt4 key购买 nike

我正在尝试添加这个 bootsnipp:https://bootsnipp.com/user/snippets/kl7nQ到我的元素,但它不起作用。

我的 html 页面:

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js" integrity="sha256-VAvG3sHdS5LqTT+5A/aeq/bZGa/Uj04xKxY8KM/w9EE=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="new 1.css">
</head>
<body>

<div class="container">
<div class="well well-sm text-center">
<h3>Radio</h3>
<div class="btn-group" data-toggle="buttons">

<label class="btn btn-success active">
<input type="radio" name="options" id="option2" autocomplete="off" chacked>
<span class="glyphicon glyphicon-ok"></span>
</label>

<label class="btn btn-primary">
<input type="radio" name="options" id="option1" autocomplete="off">
<span class="glyphicon glyphicon-ok"></span>
</label>
</div>
</div>
</div>
</body>
</html>

我的 CSS 页面:

.btn span.glyphicon {               
opacity: 0;
}
.btn.active span.glyphicon {
opacity: 1;
}

你能帮帮我吗

最佳答案

您的代码看起来不错,您只是错过了包含 bootstrap.min.js 文件以使单选按钮起作用。我已将您的代码更新为可用的代码

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>Snippet - Touch Friendly Bootstrap Radio buttons and Checkboxes</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<style>
.btn span.glyphicon {
opacity: 0;
}

.btn.active span.glyphicon {
opacity: 1;
}

</style>

<body>
<div class="container">
<div class="well well-sm text-center">
<h3>Radio</h3>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-success">
<input type="radio" name="options" id="option2" autocomplete="off" checked>
<span class="glyphicon glyphicon-ok"></span>
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option1" autocomplete="off">
<span class="glyphicon glyphicon-ok"></span>
</label>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</body>

</html>

关于html - Bootsnipp 单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45895811/

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