jQuery等效于获取Canvas的上下文


155

我有以下工作代码:

ctx = document.getElementById("canvas").getContext('2d');

有什么办法可以重写它来使用$吗?这样做失败:

ctx = $("#canvas").getContext('2d');

Answers:


282

尝试:

$("#canvas")[0].getContext('2d');

jQuery在数字索引中公开实际的DOM元素,您可以在其中执行常规的JavaScript / DOM函数。


13

我还看到,通常首选使用.get(0)来将jquery目标引用为HTML元素:

var myCanvasElem = $("#canvas").get(0);

也许是为了帮助避免任何潜在的空对象引用,因为jquery将null作为对象返回,但是使用.get(0)中的元素可能不会失败,所以会静静地......您可以轻松地检查画布是否在.get(0之前)首先找到) 喜欢

if( $("#canvas").length ) ctx = $("#canvas").get(0).getContext('2d');
else console.log('Error: Canvas not found with selector #canvas');

1
try{ 
   ctx = $('#canvas').get(0).getContext('2d');
}catch(e){ 
    console.log('We have encountered an error: ' + e);
}

要么...

if( typeof $('#canvas') === 'undefined'){ 
    var canvas = '<canvas id="canvas"><\/canvas>';
    $('body').append(canvas);
}
setTimeout( function(){ ctx = $('#canvas').get(0).getContext('2d'); }, 500);

使用setTimeout是确保您在画布元素完全创建并注册到DOM之前不要尝试调用它的一种简便方法。


在您回答之前8年问了这个问题。在回答前检查询问日期!
罗霍

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.