Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两页。第一个,pay.html,包含:
pay.html
<a href="javascript:showHint()">Click me</a>
但功能showHint()在第二页。
showHint()
如何打开第二页并从第一页中的链接调用该函数。
您应该将 JavaScript 函数抽象为一个单独的.js文件,并将该文件包含在每个页面上:
.js
<script type="text/javascript" src="commonFunctions.js"></script>
任何时候,只要您有通用代码,就将其抽象为一个共享组件,并从需要的地方调用该组件。