LinkedIn 入门页面显示了以下包含 javascript 文件的方法。
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: your_api_key_goes_here
</script>
我的问题是 - 我该怎么做?如果我能做到这一点会很酷:
<script type="text/javascript" src="helloWorld.js">
inputParam: Hello World!
</script>
然后在 helloWorld.js
function getParam(name) {
/* Fill in logic here, but somehow should return "Hello World!" */
}
alert(getParam('inputParam'));