我创建了一个创建动态canvas元素的函数,当我尝试获取其上下文属性时,它给出了错误:无法获取undefined属性或null
当我试图获得ctx
时,它会给我一个错误
JS:
$(document).ready(function() {
$("#button1").live("click",function() {
$.post("hDemo.ashx",function(){
GetCanvas();
});
});
});
function GetCanvas() {
var vElement=$("<canvas id='canvas'></canvas>");
$("#divParent").html(vElement);
var ctx=document.getElementById("canvas").getContext("2d");
}