如何通过 materializecss 中的 Button 发送值?
How to send value through Button in materializecss?
当我点击这个按钮时,modal1 将打开,但我想通过这个按钮发送数据,可以在任何适当的解决方案中访问模态?
<a class="waves-effect waves-light btn modal-trigger red darken-1" href="#modal1">Buy Now</a>
最简单的方法是使用 HTML5 data attributes. All you need to do is to add data-key="value"
in your button. You can then access this data in your modal by using jquery's .data()
方法。
您可以参考此 codepen 以更好地了解如何使用数据属性。
当我点击这个按钮时,modal1 将打开,但我想通过这个按钮发送数据,可以在任何适当的解决方案中访问模态?
<a class="waves-effect waves-light btn modal-trigger red darken-1" href="#modal1">Buy Now</a>
最简单的方法是使用 HTML5 data attributes. All you need to do is to add data-key="value"
in your button. You can then access this data in your modal by using jquery's .data()
方法。
您可以参考此 codepen 以更好地了解如何使用数据属性。