我无法确定为什么onClick事件在jsFiddle中无法正常工作。代码在浏览器上运行良好,但是当尝试将其移植到jsFiddle时,我失去了触发onClick事件的能力。
我目前的代码如下:
对于HTML:
if (!pfx[p]) {
type = type.toLowerCase();
}
js:
<body>
<button id="find-near-btn" onClick="getMylocation()">
Find companies near me
</button>
<button id="mark-pos-btn" onClick="markMyPosition()">
Mark my position
</button>
<div id="mymap"></div>
<div id="output"></div>
</body>
小提琴可以是found here。当我点击任何按钮时,我什么也得不到。关于如何使这项工作的任何想法?
答案 0 :(得分:1)
您需要将JS代码更改为位于页面<body>
标记内。使用Javascipt面板右上角的小齿轮,然后选择No wrap - in <body>
下的Load type
。 I already tested this and it works