使用jquery动态添加导航页卡和标题

来源:互联网 发布:Ubuntu配置caffe CPU 编辑:程序博客网 时间:2024/05/21 07:08
$(function () {    $(document).attr("title", "梅林系统");//修改title值    var cssURL = 'http://mat1.gtimg.com/www/icon/favicon2.ico';    var head = document.getElementsByTagName('head')[0];    linkTag = document.createElement('link');    linkTag.href = cssURL;    linkTag.setAttribute('rel', 'shortcut icon');    linkTag.setAttribute('type', 'images/x-icon');    head.appendChild(linkTag);});
原创粉丝点击