อยากถามว่า
1.คือต้องทำยังไงให้ google หาเว็บเราเจอคะ คือตอนนี้มันเจอแค่หน้าเว็บหน้าเดียว ไม่เข้าใจว่าทำไมถึงไม่มีลิงค์แสดงหน้าอื่นภายในเว็บ
2.อยากรู้ว่าจะทำยังไงเพื่อให้มันค้นหาเฉพาะไฟล์ PDF ภายในเว็บ โดยไม่สนใจข้อมูลอื่นๆ
Code (JavaScript)
(function() {
var cx = 'xxxxxxxxxxxxxxxx:yyyyyyyyyyyyyyyyyyy'; // Insert your own Custom Search Engine ID here
var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true;
gcse.src = (document.location.protocol == 'https' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
customSearchControl.setSearchStartingCallback(
this,
function(control, searcher, query) {
searcher.setQueryAddition('filetype:pdf');
}
);
})();