0
刪除元素我有兩個DIV類這是很好的一個頁面。一個是收集另一個項目。骨幹/ javascript中的DOM
但是,當我想選擇編輯,我需要刪除的項目視圖,並在編輯鏈接替換它,這是不會發生及其呆在那裏,下面是我的編輯類將是巨大的。
Supernote.Views.Notes ||= {}
class Supernote.Views.Notes.EditView extends Backbone.View
template : JST["backbone/templates/notes/edit"]
events :
"submit #edit-note" : "update"
update : (e) ->
e.preventDefault()
e.stopPropagation()
@model.save(null,
success : (note) =>
@model = note
window.location.hash = "/#{@model.id}"
)
render : ->
$(@el).html(@template(@model.toJSON()))
this.$("form").backboneLink(@model)
return this