gpt4 book ai didi

javascript - 使用 Visual Studio 2015 Windows Phone 应用程序时 Onclick 不起作用

转载 作者:行者123 更新时间:2023-11-28 10:43:59 26 4
gpt4 key购买 nike

设计

<div class="align_center">
<div class="btn EmployeeloginBtn" **onclick="new Employee().register()**">REGISTER</div>
</div>

Employee.js:

var Employee = function() {    
var self = this;

self.register = function ()
{
var mobile = $("#mobile").val();
var regSeven = /^7[0-9].*$/
var regEight = /^8[0-9].*$/
if($("#empId").val() =='')
{
alert("invalid emp id");
return false;
}
if(mobile =='')
{
alert("invalid mob no");
return false;
}
}
};

当我单击按钮 onclick 不起作用时,它不会触发 Employee.js

最佳答案

我不完全确定,但在我看来,在这样的应用程序中,它不会运行放置在 HTML 文件中的 JavaScript 代码。

这里new Employee语句().Register()被忽略。

尝试直接在 JS 文件中管理按钮点击。

document.getElementById("Button1").onclick = function() {new Employee().register();};

<div id="Button1" class="btn EmployeeloginBtn">REGISTER</div>

关于javascript - 使用 Visual Studio 2015 Windows Phone 应用程序时 Onclick 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46849076/

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