window.parts = {
/** パース */
write: function (func) {
const html = func.tostring().split('/*/')[1].trim();
document.write(html);
},
/** common header */
header: function () {
// /*/ 〜 /*/ の間にhtmlを記述
this.write(function () {
/*/
/*/
});
},
/** dummy header */
dummyheader: function () {
// /*/ 〜 /*/ の間にhtmlを記述
this.write(function () {
/*/
/*/
});
},
/** common footer */
footer: function () {
// /*/ 〜 /*/ の間にhtmlを記述
this.write(function () {
/*/
/*/
});
},
};
function parts_aside_service(){
document.write('\
\
');menucurrentset();}
function parts_aside_ir(){
document.write('\
\
');menucurrentset();}
function parts_aside_corporate(){
document.write('\
\
企業情報
\
\
パーソルグループ
\
\
\
パーソルホールディングス
\
\
\
\
');menucurrentset();}
//menu current
function menucurrentset(){
var path = window.location.pathname;
console.log(path);
var linkmenu = document.getelementsbyclassname("p-aside__link");
for (var i = 0; i < linkmenu.length; i++) {
var menuhref = linkmenu[i].getattribute("href");
if(menuhref == path){
linkmenu[i].classlist.add("is-current")
console.log(path + ':' + menuhref);
}
}
}