gpt4 book ai didi

javascript - 无法调用 JavaScript 函数

转载 作者:行者123 更新时间:2023-11-28 21:14:33 25 4
gpt4 key购买 nike

页面来源:

<html>
<head>
<title>Admin Search Results</title>

<script type="text/javascript">
function delete()
{
alert("abc");
}
</script>
</head>
<body>
<h1>Admin Search Results</h1>
<form id="modDel" action="modDel.pl" method="post" onsubmit="return delete()">
<table border="1">
<tr>
<th>User Name</th>
<th>Email</th>
<th>First Name</th>
<th>Last Name</th>
<th>Password</th>
<th>Blocked</th>
<th>Modify</th>
<th>Delete</th>
</tr>
<tr>
<input type="hidden" id="un_0" name="un_0" value="aa">
<td>aa</td>
<td>aa</td>
<td>aa</td>
<td>aa</td>
<td>aa</td>
<td>0</td>
<td><input type="submit" name="modify_0" value="Modify"></td>
<td><input type="checkbox" id="delete_0" name="delete_0" value="Yes"></td>
</tr>
<tr>
<input type="hidden" id="un_1" name="un_1" value="a">
<td>a</td>
<td>a</td>
<td>a</td>
<td>a</td>
<td>a</td>
<td>0</td>
<td><input type="submit" name="modify_1" value="Modify"></td>
<td><input type="checkbox" id="delete_1" name="delete_1" value="Yes"></td>
</tr>

</table>
<input type="hidden" id="count" name="count" value="1">
<input type="submit" id="delete" name="delete" value="Delete Selected Accounts" onclick="delete()">
<button type="button" onclick="delete()">Display Date</button>
</form>
</body>
</html>

它是由 Perl 脚本从两个模板(一个用于表格)生成的。

我想要的只是让某些事件发生。我添加了 onsubmitonclick 但都不起作用。

我确信我只是错过了一些小东西,但我看不到它。顺便说一句,我使用的是 Chrome。

编辑:我可以通过将 js 代码直接添加到 onclick/onsubmit 引号中来使其工作。

最佳答案

这里的问题是 delete是 JavaScript 中的保留字。尝试使用不同的函数名称。也不需要 returnonsubmit函数,直接调用函数即可。

<script type="text/javascript">
function deleteFunc()
{
alert("abc");
}
</script>
</head>
<body>
<h1>Admin Search Results</h1>
<form id="modDel" action="modDel.pl" method="post" onsubmit="deleteFunc()">

关于javascript - 无法调用 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7961328/

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