サイト全体のヘッダーを変数に入れたいと思います。したがって、たとえば、次の 3 行を 1 つの変数に入れたいと思います。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
そして、私はそのための関数を書いています:
function set_header(){
//This is where i would like to set the variable for the 3 lines I mentioned earlier
}