jQuery动态的给页面中添加一条样式表的链接

HTML部分:

1 <input type="button" value="单击" onclick="getbody()" />
2 <div class="gys">郭延思</div>

js部分:

1 function getbody(){
2         $('<link type="text/css" rel="stylesheet" href="3.css"/>').appendTo("head");
3         
4         }

OK啦

posted @ 2013-11-21 16:23  思思博士  阅读(252)  评论(0编辑  收藏  举报