页面:1.<div style="font-size: 16px;" class="textbox-content" id="zoomtext">
<br><br>扩展方法(Extension Method)<br>可以为已有的类型添加新的方法定义和实现,
</div>
2.
JS:中的函数
function doZoom(size) {
document.getElementById('zoomtext').style.fontSize=size+'px';
}
<br><br>扩展方法(Extension Method)<br>可以为已有的类型添加新的方法定义和实现,
</div>
2.
<a href="javascript: doZoom(16);">大</a> | <a href="javascript: doZoom(14);">中</a> | <a href="javascript: doZoom(12);">小</a>
JS:中的函数
function doZoom(size) {
document.getElementById('zoomtext').style.fontSize=size+'px';
}
转载于:https://www.cnblogs.com/xiongeee/archive/2007/04/21/721816.html