我知道这可能是一个简单的错误,但是我已经查看了几个小时,但找不到错误。这是片段:
<script type='text/javascript'>
"use strict";
$('#jumbobtn').on('click', function(e){
e.preventDefault();
$.ajax({
url : '/create/name',
type: 'GET',
contentType: null,
dataType: 'json',
success : function(reply, status, xhr){
if(reply['error']!==undefined){
throw new Error('No template given');
}
if(reply['success']!==undefined){
$('#createform').append( reply['cform'] ).css({ display : 'block' });
}
}
});
return false;
});
</script>
提前谢谢各位。