嗨,我正在尝试将此代码从骨干网转移到淘汰赛。我猜它更像是一个 jQuery 问题,因为主干使用 $el 作为助手?
主干中的代码是
//this.el is the root element of Backbone.View. By default, it is a div.
//$el is cached jQuery object for the view's element.
//append the compiled template into view div container
this.$el.append(***some html***);
所以 console.log (this.$el) 返回一个对象
我努力了
console.log($(** some html **))
但这只是返回第一次潜水的名称而不是对象...