我想我错过了我检查过我的代码的东西,它与其他工作正常的项目几乎相同。 the repository
首先是我的jquery文件
`$("#taskdata").keyup(function(event){
if(event.keyCode == 13){
console.log("getting band")
$("#getband").click();
}
});`
它所在的指令 `
angular.module('myApp').directive('newTask', function() {
return {
restrict: 'E',
template: `
<div class="newTask" style:" margin: 0;">
<input id="taskdata" class="data" name="task" ng-model="text"
placeholder="Enter Task">
<button class="submit" ng-click="postData( {text:text} )">Create Task</button>
</div> `
}
}) `