canvas绘制文字
//绘制文字 ctx.font = "900 30px Arial";//文本粗细,文本大小,文本样式 //ctx.fillText("hellow word", 120,100); ctx.strokeText("hellow word", 120,100); //文本水平对齐方式 ctx.textAlign = "ce…
//绘制文字 ctx.font = "900 30px Arial";//文本粗细,文本大小,文本样式 //ctx.fillText("hellow word", 120,100); ctx.strokeText("hellow word", 120,100); //文本水平对齐方式 ctx.textAlign = "ce…
app.on('click', function(params) {}
function getChar(str,start,end){ var res = ""; for(var i = start;i<end+1;i++){ res += str.charAt(i); } return res; }
<script type="text/javascript" src="/jiesuo/js/jquery.min.js"></script> <script type="text/javascript" src="/jiesuo/js/jquery.mobile.min.js"></script> <script type="text/javascript" s…
background: linear-gradient(#fff, #333);
$("input[type='radio']").on("click",function(){ console.log($(this).parent()); })