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>