no title [bookmarklet]
by
hakugan
2017-10-06 [2017/10/06 21:42:37]
@@ -82,17 +82,24 @@
//パンくず
var url = location.href;
-var breads = ["","","","",""];
+var breads = [];
if(url.indexOf("p-db")>=0){
//PRIDE
var breads = document.querySelector('#sectionContents > div.ga2012_breadcrumbs > p')
.innerText.replace(/\s+/g, '').replace('個人向けトップ>', '').split(">");
-console.log(breads );
+
}else{
//WCS
-
+ var pre_breads = document.querySelectorAll('#localheader > div > div.breadcrumbs-element > div > div > nav > ol > li');
+ if(pre_breads){
+ for(var i = 0; i < pre_breads.length; ++i){
+ if(pre_breads[i].innerText != "" && pre_breads[i].innerText != "個人向けトップ"){
+ breads.push(pre_breads[i].innerText);
+ }
+ }
+ }
}
-document.querySelector('#sectionContents > div.ga2012_breadcrumbs > p').innerText.replace(/\s+/g, '')
+console.log(breads );
alert(location.href)
var td_util = (function() {
// constructor
var td_util = function(arg) {};
var p = td_util.prototype;
//arias get element id
p.id = function(key) {
return document.getElementById(key);
};
//arias get elements tags
p.tag = function(key) {
return document.getElementsByTagName(key);
};
//arias get elements class
p.class = function(key) {
return document.getElementsByClassName(key);
};
//arias get elements selecter
p.selector = function(key) {
return document.querySelectorAll(key);
};
//get url parameter value
p.getUrlPatam = function(key) {
var regexp = new RegExp('' + key + '=(.*?)(&|$)');
var found = location.search.match(regexp);
if (found) {
return decodeURIComponent(found[1]);
}
return '';
};
//get cookie parameter value
p.getCookie = function(key) {
var result = [];
var cookies = document.cookie;
if (cookies != '') {
var cookieArray = cookies.split(';');
for (var i = 0; i < cookieArray.length; i++) {
var cookie = cookieArray[i].split('=');
if (cookie[0] == key) {
return decodeURIComponent(cookie[1]);
}
}
}
return '';
};
//return object
return td_util;
})();
var tdu = new td_util();
//生産終了 Start
var url = location.href;
if(url.indexOf("p-db")>=0){
var obj = tdu.class('addstate');
if(obj){
for(var i = 0; i < obj.length; ++i){
if(obj[i].innerHTML.replace(/[\n\r]/g,"") == "生産終了"){
console.log("生産終了");
}
}
}
}
//生産終了 End
//品番
var url = location.href;
if(url.indexOf("p-db")>=0){
var id = url.replace(".html","").substr(url.indexOf("/p-db/")+6).split("_")[0];
if(id.indexOf("/") == -1 && id.indexOf("?") == -1 && id.indexOf("&") == -1 && id.indexOf("=") == -1){
alert(id );
}
}
//パンくず
var url = location.href;
var breads = [];
if(url.indexOf("p-db")>=0){
//PRIDE
var breads = document.querySelector('#sectionContents > div.ga2012_breadcrumbs > p')
.innerText.replace(/\s+/g, '').replace('個人向けトップ>', '').split(">");
}else{
//WCS
var pre_breads = document.querySelectorAll('#localheader > div > div.breadcrumbs-element > div > div > nav > ol > li');
if(pre_breads){
for(var i = 0; i < pre_breads.length; ++i){
if(pre_breads[i].innerText != "" && pre_breads[i].innerText != "個人向けトップ"){
breads.push(pre_breads[i].innerText);
}
}
}
}
console.log(breads );
alert(location.href)
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。