-1

特定目录包含 html 文件列表。如何通过单击使用 JavaScript 的链接从特定目录打开 html 文件?

4

1 回答 1

2

就像建议的那样,这会在同一个窗口中打开新的 html

<a href="other_directory/no_js_needed.html">Link</a>

这将在新窗口中打开 html

<a href="other_directory/no_js_needed.html" target="_blank">Link</a>

javascript内联方式相同的窗口

<a href="other_directory/no_js_needed.html" onclick="location.href=this.href;return false">Link</a>

javascript 内联新窗口

<a href="other_directory/no_js_needed.html" onclick="window.open(this.href);return false">Link</a>

脚本标签功能中的javascript

<script>
function openlink(link){
location.href=link;
}
openlink('other_directory/no_js_needed.html');
</script>

新窗口中的脚本标记功能中的 javascript

<script>
function openinnewwindow(link){
window.open(link)
}
openinnewwindow('other_directory/no_js_needed.html');
</script>
于 2013-06-07T06:06:36.000 回答