javascript 博客标签-AS-title.js

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 博客标签-AS-title.js相关的知识,希望对你有一定的参考价值。

      /* ==========================================================================
      blog titles by category 
      ========================================================================== */
      var parts = window.location.href.split('/'); //this grabs the url and splits it by slash
      var result = parts[parts.length - 1]; // this takes that last slashed bit
      result = result.replace(/-/g, ' '); //this removes the dashes from text
      $('.inner-hero h1').text(result); //this takes that content and replaces the text in this jquery w the result

以上是关于javascript 博客标签-AS-title.js的主要内容,如果未能解决你的问题,请参考以下文章

javascript 博客小部件标签,output.js

JavaScript 系列博客

js中a标签里href="javascript:void"的用途

javascript笔记——jsonp

博客园头像

JavaScript基础 onload的必要性 window.document.body.bgColor代码写在了body标签的前面