这是代码:
$('#insert_text').click(function(){
var drawing_plate= $("#Drawing_Plate")[0];
context = drawing_plate.getContext('2d');
drawing_plate.bind('touchstart',insert_the_text);
});
我选择画布元素,将其分配给drawing_plate。但是铬抱怨说
Uncaught TypeError: Object #<HTMLCanvasElement> has no method 'bind
但是drawing_plate确实是一个jQuery对象,为什么它不拥有方法:
.bind()
...?
更新:请给出解释。