gpt4 book ai didi

javascript - 当函数在外部 javascript 文件中时,onclick 事件不起作用

转载 作者:行者123 更新时间:2023-11-30 00:05:22 27 4
gpt4 key购买 nike

来这里之前,我尝试了 stackoverflow 中列出的几个链接,但没有一个能帮助我解决这个问题,或者可能是我做错了什么。

我的 aspx 中有一个输入按钮,并且有 serverclick 事件以及 onclick,客户端和服务器方法都被正确调用,我只在 ' onclick'函数在外部文件中(在同一目录中)。

我什至在aspx中引用了js文件。

注意:

all other controls are working in external js except this.

inline function works fine, but not when moved in external function.

I even tried window.onload() but it triggers the function during pageload which is not what I need.

aspx

 <script type="text/javascript" src="external.js"></script>

输入按钮。

<input class="data" type="submit" name="cmdSubmit" value="Run Report" onclick="return FormValidate();" 
onserverclick="RunReport" runat="server" id="Submit1" />

外部.js

$(document).ready(function () {
function FormValidate() {
alert("Validated");
});

最佳答案

请删除 $(document).ready(function () { 出现在您的 function FormValidate() 周围,使其成为全局函数。现在将它放在 ready 处理程序,您正在将其设为局部作用域函数。因此您的 external.js 应该是:

function FormValidate() {
alert("Validated");
}

关于javascript - 当函数在外部 javascript 文件中时,onclick 事件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38736212/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com