urls.py
from django.contrib import admin
from django.urls import path
urlpatterns = [
path('admin/', admin.site.urls),
path('index/', views.index),
]
views.py
```python
def index(request):
return render(request, 'index.html')
```html
點我刪除
顯示效果
### 刪除**
修改views,增加乙個delete函式
return httpresponse('非法請求')
```修改index.html,定義乙個table,模擬刪除操作
#first name
last name
username
operation
1mark
otto
@mdo
2jacob
thornton
@fat
3larry
the bird
@twitter
## 小結
### sweet語法
```j**ascript
swal(, function (isconfirm)
})```
### 引數說明
- title: 提示的標題
- text: 提示的文字
- type: 型別
- showcancelbutton: 是否顯示取消按鈕
- confirmbuttoncolor:確認按鈕顏色
- confirmbuttontext: 確認按鈕文字
- cancelbuttontext: 取消按鈕文字
- closeonconfirm:點選確認之後是否自動關閉
- closeoncancel:點選取消之後是否自動關閉
SweetAlert(彈出層外掛程式)
懷著非常 非常惱火的心情寫下這個博文。我深深懷疑有一些人只會瞎貼上複製別人的博文,自己試都不試就發布到網上,左右看的人想法,就此深通惡絕!廢話不多說。sweetalert是乙個簡潔好用的自製alert 外掛程式。再此,如果有的朋友懶得自己寫乙個alert 可以用用這個外掛程式,當然這個外掛程式,裡面...
漂亮的彈視窗外掛程式 sweetAlert的使用
想必你已經受夠了單調的alert彈窗吧?為了更好的使用者體驗性,現在介紹一款漂亮的彈視窗外掛程式 sweetalert,現在就來介紹它的使用 2 在頁面的頭部初始化外掛程式 stylesheet type text css href dist sweetalert.css 3 頁面載入完成後呼叫sw...
SweetAlert2 使用教程
sweetalert2是一款功能強大的純js模態訊息對話方塊外掛程式。sweetalert2用於替代瀏覽器預設的彈出對話方塊,它提供各種引數和方法,支援嵌入,背景,html標籤等,並提供5種內建的情景類,功能非常強大。sweetalert2是sweetalert js的公升級版本,它解決了sweet...