Home  >  Article  >  Backend Development  >  请教:form表单中调用onclick出错

请教:form表单中调用onclick出错

WBOY
WBOYOriginal
2016-06-23 14:02:151153browse

请教各位一个菜鸟问题:

我制作的网页中有个提交按钮用来提交表单内容,但是由于还要进行其他处理,所以不能直接用submit,而是用button,并调用onclick中的函数,具体a.php代码如下:

 













name
sexuality
 

 

a.js代码如下:
function send()
{
alert("test");
...
}

不知道为什么在网页左下角总是报错,但是如果去掉
两行代码的话,就可以正常弹出test的提示框了。

请问我的代码哪里写错了?不胜感激。


回复讨论(解决方案)

input ID 和 JS function send()重复



function doSend()
{
alert("test");
...
}

太感谢啦~!我都纠结好久了。。。

那个,怎么给分啊?

改下js中的send的函数名

谢谢两位帮忙,鞠躬~

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:人人网站内应用授权问题Next article:php写web项目