未知的奇怪语法

时间:2015-03-25 09:11:29

标签: search-engine

所以最近我一直在玩yacy the p2p搜索引擎。我在他们的html页面中遇到这种奇怪的语法看起来像某种类型的包含,我不确定它究竟是做什么(或者它是什么语言)。这是代码。

#(num-results)#
::
<p>No Results.</p>
::
<p>No Results. (length of search words must be at least 1 character)</p>
::
<div id="results"></div>
<div class="progress">
  <div class="progress-bar progress-bar-info" id="progressbar" role="progressbar" style="width:0%;">
    <span style="position:absolute;display:block;text-align:left;width:100%;color:black;">&nbsp;&nbsp;&nbsp;<strong id="offset">#[offset]#</strong>-<strong id="itemscount">#[itemscount]#</strong> of <strong id="totalcount">#[totalcount]#</strong> #(globalresults)#::; (<strong id="localResourceSize">#[localResourceSize]#</strong> local, <strong id="remoteResourceSize">#[remoteResourceSize]#</strong> remote), <strong id="remoteIndexCount">#[remoteIndexCount]#</strong> from <strong id="remotePeerCount">#[remotePeerCount]#</strong> remote YaCy peers.#(/globalresults)#</span>
  </div>
</div>

#( somename )#和#[ somename ]#语法有什么作用?请帮忙。

1 个答案:

答案 0 :(得分:1)

绝对没有。但你可以用javascript解析它并用值替换它。

它没有官方语言。它自己的实现来操纵html输出。 哪个可以在服务器端或客户端完成。它们有点构成规则,您可以通过样式确定值的显示位置。

在我的例子中,我将#[itemscount]#替换为任意10

&#13;
&#13;
str = '<span style="position:absolute;display:block;text-align:left;width:100%;color:black;">&nbsp;&nbsp;&nbsp;<strong id="offset">#[offset]#</strong>-<strong id="itemscount">#[itemscount]#</strong> of <strong id="totalcount">#[totalcount]#</strong> #(globalresults)#::; (<strong id="localResourceSize">#[localResourceSize]#</strong> local, <strong id="remoteResourceSize">#[remoteResourceSize]#</strong> remote), <strong id="remoteIndexCount">#[remoteIndexCount]#</strong> from <strong id="remotePeerCount">#[remotePeerCount]#</strong> remote YaCy peers.#(/globalresults)#</span>';

document.getElementById('container').innerHTML = str.replace('#[itemscount]#',"10");
&#13;
<div id="container"></div>
&#13;
&#13;
&#13;