1.将“保存”按钮移到详情页右下角,如下代码已测试能实现需求
<script> function alert1() { alert(1); } </script> <!-- 我一开始写的<script type="css"></script>有误 --> <!-- 这样写里面定义的样式更不不会被识别 --> <style> .save-button { position: fixed; right: 20px; bottom: 20px; } </style> <div class="save-button"> <button onclick="alert1()">保存</button> </div>
标签:06,样式,2024,20px,实现需求,复盘 From: https://www.cnblogs.com/pingfanliliang/p/18226812