当前位置:   article > 正文

js-vue中多个按钮状态选中类似于复选框与单选框实现

js-vue中多个按钮状态选中类似于复选框与单选框实现

1.vue中多个按钮状态选中类似于复选框

在Vue中处理多个按钮的选中状态切换,通常我们会利用Vue的响应式数据系统来追踪每个按钮的选中状态。

  html

  1. <div id="app">
  2. <button
  3. v-for="button in buttons"
  4. :key="button.id"
  5. :class="{ active: button.isSelected }"
  6. @click="toggleSelection(button.id)"
  7. >
  8. {{ button.text }}
  9. </button>
  10. </div>

js

  1. new Vue({
  2. el: '#app',
  3. data: {
  4. buttons: [
  5. { id: 1, text: '按钮1', isSelected: false },
  6. { id: 2, text: '按钮2', isSelected: false },
  7. { id: 3, text: '按钮3', isSelected: false }
  8. ]
  9. },
  10. methods: {
  11. toggleSelection(id) {
  12. // 找到并点击的按钮并切换其选中状态
  13. this.buttons.forEach(button => {
  14. if (button.id === id) {
  15. button.isSelected = !button.isSelected;
  16. }
  17. });
  18. }
  19. }
  20. });

 css

  1. new Vue({
  2. el: '#app',
  3. data: {
  4. buttons: [
  5. { id: 1, text: '按钮1', isSelected: false },
  6. { id: 2, text: '按钮2', isSelected: false },
  7. { id: 3, text: '按钮3', isSelected: false }
  8. ]
  9. },
  10. methods: {
  11. toggleSelection(id) {
  12. // 找到并点击的按钮并切换其选中状态
  13. this.buttons.forEach(button => {
  14. if (button.id === id) {
  15. button.isSelected = !button.isSelected;
  16. }
  17. });
  18. }
  19. }
  20. });

        定义一个buttons数组,其中包含了每个按钮的idtext(按钮上显示的文本)和isSelected按钮的选中状态)。

        使用v-for指令来遍历buttons数组,并为每个按钮绑定了一个点击事件处理器toggleSelection,该处理器接收按钮的id作为参数。当按钮被点击时,toggleSelection方法会根据id找到对应的按钮,并切换其isSelected属性的值

        使用:class绑定来根据按钮的isSelected状态动态添加active类,以改变按钮的样式来表示其选中状态。

2.vue中多个按钮状态选中类似于单选框

        实现类似单选框的功能,即在一组按钮中只能同时选中一个,你可以通过维护一个变量来记录当前选中的按钮的id,并在点击按钮时更新这个变量。然后,根据这个变量来设置每个按钮的选中状态。 

  1. <div id="app">
  2. <button
  3. v-for="button in buttons"
  4. :key="button.id"
  5. :class="{ active: selectedButtonId === button.id }"
  6. @click="selectButton(button.id)"
  7. >
  8. {{ button.text }}
  9. </button>
  10. </div>
  11. <script>
  12. new Vue({
  13. el: '#app',
  14. data: {
  15. buttons: [
  16. { id: 1, text: '按钮1' },
  17. { id: 2, text: '按钮2' },
  18. { id: 3, text: '按钮3' }
  19. ],
  20. selectedButtonId: null // 用来记录当前选中的按钮的id
  21. },
  22. methods: {
  23. selectButton(id) {
  24. // 更新当前选中的按钮id
  25. this.selectedButtonId = id;
  26. }
  27. }
  28. });
  29. </script>
  30. <style>
  31. .active {
  32. background-color: blue;
  33. color: white;
  34. }
  35. </style>

  buttons数组包含了所有按钮的信息,而selectedButtonId变量用于跟踪当前选中的按钮的id。每个按钮都绑定了一个点击事件处理器selectButton,当按钮被点击时,该处理器会更新selectedButtonId的值为被点击按钮的id

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/905260
推荐阅读
相关标签
  

闽ICP备14008679号