使用 jQuery 禁用标头中外部链接的 .js/.css?

发布于 2024-11-17 04:52:12 字数 53 浏览 5 评论 0原文

是否可以使用 jQuery 禁用/注释掉头文件,然后重新启用它,或者打开/关闭禁用/启用它?

Is it possible to use jQuery to disable/comment out a header file and then later re-enable it, sort of toggle it on/off disable/enable it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜点 2024-11-24 04:52:12

试试这个(对于 css 文件):

$('link[type="text/css"]').each(function(){
  var $ele = $(this);

  //check if atribute data is set and has info
  if ($ele.attr('data') !== undefined && $ele.attr('data') !== ''){ //set, so adding that info to href attribute and emptying data attribute

    $ele.attr('href', $ele.attr('data'));
    $ele.attr('data', '');

  } else{ //not set/empty, so setting/filling it and emptying href attribute

    $ele.attr('data', $ele.attr('href'));
    $ele.attr('href', '');

  }
});

Try this (for css files):

$('link[type="text/css"]').each(function(){
  var $ele = $(this);

  //check if atribute data is set and has info
  if ($ele.attr('data') !== undefined && $ele.attr('data') !== ''){ //set, so adding that info to href attribute and emptying data attribute

    $ele.attr('href', $ele.attr('data'));
    $ele.attr('data', '');

  } else{ //not set/empty, so setting/filling it and emptying href attribute

    $ele.attr('data', $ele.attr('href'));
    $ele.attr('href', '');

  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文