使用href中的javascript导航到不同html页面的div部分

时间:2013-04-18 04:32:20

标签: javascript html

我正在使用javascript函数跳转到当前html页面上的div部分(system_details.html):

<a href="javascript:show_processor()">Processor</a>
<a href="javascript:show_ram()">RAM</a>

但是,我想从另一个html页面(index.html)直接导航到system_details.html页面的show_ram()函数

2 个答案:

答案 0 :(得分:0)

提供链接和ID <a href="javascript:show_ram()" id="ram">RAM</a>。使用类似id的散列在URL末尾添加此index.html#ram

然后使用jQuery执行以下操作:

$(document).ready(function(){
  if(window.location.hash) $('#' + window.location.hash).click();
});

这会将哈希后的网址的最后一部分作为要点击的链接的id,然后在指定click()的链接上调用id

答案 1 :(得分:-1)

使用ajax概念。从index.html页面加载数据