我感到奇怪的错误!
我正在为My site开发WordPress小部件。在我的小部件中,我有Highslide Popup form.While提交表单我想调用特定的函数。该函数包含在标题中,但它表示找不到函数。
我的表格
<form method="post" name="contact_vendor_contact_frm"
onsubmit="return contact_vendor_contact_frm(this);">
.....
</form>
contact_vendor_contact_frm 标题 contact_vendor.js 中包含的功能.You 可以在页面源中看到这个
帮助我!
答案 0 :(得分:1)
在你的代码名称中,form的属性等于函数名,它会覆盖你的函数。如果你写:
console.log(contact_vendor_contact_frm); // this would be point to form element not to your function
答案 1 :(得分:0)
用户Firebug并检查是否返回功能
typeof contact_vendor_contact_frm;
如果没有,那么检查返回值是什么,以解决问题。