我正在写一个Bookmarklet来改变谷歌主页的行为。我喜欢视觉搜索页面预览功能。 Coolest.thing.ever。 但是我真的很想看看它是什么样的,如果它作为一个实时搜索,而不是鼠标悬停链接看到它。
所以有几个步骤 - 我有部分功能工作。
这是JS代码。
javascript: (function() {
c = document.getElementById('ires');
nli = document.createElement('div');
cell = 0;
for (var Obj in google.vs.ha) {
na = document.createElement('a');
na.href = Obj;
na.style.cssFloat = 'left';
na.style.styleFloat = 'left';
nd = document.createElement('div');
cldiv = document.createElement('div');
cldiv.style.clear = 'both';
nd.style.width = google.vs.ha[Obj].data.dim[0] + 'px';
nd.style.height = google.vs.ha[Obj].data.dim[1] + 'px';
nd.style.margin = '5px';
nd.style.padding = '5px';
nd.style.border = '1px solid #999999';
if (google.vs.ha[Obj].data.tbts.length) {
nilDiv = document.createElement('div');
for (i = 0; i < google.vs.ha[Obj].data.tbts.length; i++) {
box = google.vs.ha[Obj].data.tbts[i].box;
newbox = document.createElement('div');
newbox.className = 'vsb vsbb';
newbox.style.position = 'relative';
newbox.style.top = (box.t) + 'px';
newbox.style.left = box.l + 'px';
newbox.style.height = box.h + 'px';
newbox.style.width = box.w + 'px';
nilDiv.appendChild(newbox);
newtext = document.createElement('div');
newtext.className = 'vsb vstb';
newtext.innerHTML = google.vs.ha[Obj].data.tbts[i].txt;
newtext.style.top = (box.t) + 'px';
newtext.style.position = 'relative';
nilDiv.appendChild(newtext);
}
nilDiv.style.height = '0px';
nd.appendChild(nilDiv);
}
for (i = 0; i < google.vs.ha[Obj].data.ssegs.length; i++) {
ni = document.createElement('img');
ni.src += google.vs.ha[Obj].data.ssegs[i];
ni.className += ' vsi';
nd.appendChild(ni);
}
na.appendChild(nd);
nli.appendChild(na);
};
c.insertBefore(nli, c.firstChild);
})();
目前的工作方式是
目前,出于某种原因 - 除非图像预览上有文本框,否则添加到页面的链接不可点击。就我对DOM的理解而言,<a>
标签的整个内容应该是可点击的。
任何人都知道问题是什么?
我想弄清楚的其他问题是如何自动查询图像而无需用户点击。
一旦完成,我将尝试将整个事物转变为事件监听器,自动查询并在搜索窗口中显示关键字上的图像。
那会有多酷?! :)
我似乎无法在堆栈中将“书签”设置为“编译”,但我可以在此处拖动您的工具栏:http://chesser.ca/2010/11/google-visual-image-search-hack-marklet。
或href应该如下所示
<a href="javascript:(function(){c=document.getElementById('ires');nli=document.createElement('div');cell=0;for(var Obj in google.vs.ha){na=document.createElement('a');na.href=Obj;na.style.cssFloat='left';na.style.styleFloat='left';nd=document.createElement('div');cldiv=document.createElement('div');cldiv.style.clear='both';nd.style.width=google.vs.ha[Obj].data.dim[0]+'px';nd.style.height=google.vs.ha[Obj].data.dim[1]+'px';nd.style.margin='5px';nd.style.padding='5px';nd.style.border='1px solid #999999';if(google.vs.ha[Obj].data.tbts.length){nilDiv=document.createElement('div');for(i=0;i<google.vs.ha[Obj].data.tbts.length;i++){box=google.vs.ha[Obj].data.tbts[i].box;newbox=document.createElement('div');newbox.className='vsb vsbb';newbox.style.position='relative';newbox.style.top=(box.t)+'px';newbox.style.left=box.l+'px';newbox.style.height=box.h+'px';newbox.style.width=box.w+'px';nilDiv.appendChild(newbox);newtext=document.createElement('div');newtext.className='vsb vstb';newtext.innerHTML=google.vs.ha[Obj].data.tbts[i].txt;newtext.style.top=(box.t)+'px';newtext.style.position='relative';nilDiv.appendChild(newtext);}nilDiv.style.height='0px';nd.appendChild(nilDiv);}for(i=0;i<google.vs.ha[Obj].data.ssegs.length;i++){ni=document.createElement('img');ni.src+=google.vs.ha[Obj].data.ssegs[i];ni.className+=' vsi';nd.appendChild(ni);}na.appendChild(nd);nli.appendChild(na);};c.insertBefore(nli,c.firstChild);})();">bookmarklet</a>
答案 0 :(得分:1)
内联元素(a)不能包含块元素(div)。
浏览器有不同的方式来处理这样的错误元素,但是它们会试图从中产生一些感觉。处理错误的一种方法是将块元素移动到内联元素之外,这当然意味着它不可单击。
使用span元素而不是div元素,然后您可以使用CSS样式将链接和span元素都置于块元素中。