用jquery的.replaceWith()方法改变html内容

2024-11-23 18:58:40
推荐回答(2个)
回答1:

$('#canvas').replaceWith('

您的浏览器不支持HTML5!

');

不是很明白,你想换高和宽为什么要用替换。。。。

回答2:

$("#canvas").click(function(){
$(this).css({width:"1280px",height:"960px"});//点击改变按钮的 高与宽样式
})