//隱藏 及出現
$('#id').hide();
$("#id").show();

//設置css
$('#id').css({width:'600px',height:'1000px'})
//移除屬性
$("#id").removeAttr("屬性名");    
var pdfCanvas = $('<canvas />').attr({height: 200,width: 200}).css({width:'600px',height:'1000px'})
pdfCanvas.removeAttr("height");

// 設置一個屬性
$('#id').attr("height","200")
$("#id").attr("disabled","disabled");
//設置多個屬性
$('#id').attr({height: 200,width: 200});
//設置一段html並增加多個屬性及css
$('<canvas id="canvasID" width="1080" height="1680" ></canvas>').css({width:'600px',height:'1000px'})
//設置一段html並增加多個屬性及css
var pdfCanvas = $('<canvas />').attr({height: 200,width: 200}).css({width:'600px',height:'1000px'})


// html 設定寬度和高度,並在css上設定顯示的寬度和高度
<canvas id="canvasID" width=1080 height=1680 style='width:590px;height:840px;border:0px'></canvas>

arrow
arrow
    文章標籤
    jquery
    全站熱搜
    創作者介紹
    創作者 jbuduoo 的頭像
    jbuduoo

    程式員:告一個段落才能睡的好。

    jbuduoo 發表在 痞客邦 留言(0) 人氣()