jQueryとbackbone.jsを使用して、JavaScriptをHTMLから可能な限り分離したいと思います。JavaScriptとHTMLをより適切に分離するため
にを追加することは可能ですか?custom attribute
そして、どうすれば新しいjQueryセレクターを使用できますか?
例:
<input type="text" id="todo-input" class="todo-input" tid="tid-attribute" > hello world </input>
// The DOM events
// I would like to use another selector tid and not class or id
events: {
"keypress #todo-input" : "updateOnEnter" // I would like to use another selector tid not id,
"keypress .todo-input" : "updateOnEnter" // I would like to use another selector tid and not class
}