开发者

Javascript/AJAX/jQuery - Object Expected Line 1 only in IE

开发者 https://www.devze.com 2022-12-22 06:01 出处:网络
http://p开发者_运维百科astie.org/856698 Anyone have any idea why the script is causing this error? It doesn\'t throw an error in Firefox, only IE.

http://p开发者_运维百科astie.org/856698

Anyone have any idea why the script is causing this error? It doesn't throw an error in Firefox, only IE.

Any ideas?

A link to the final script can be found at http://www.proskimboarding.com/codingtest/Public/registration.php


First of all, Pharabus is right, if you have jQuery available, use $.ajax instead of building your own http request, it can save you a lot of code (hint: JSON). Then you have <form method="post" action="JavaScript: regSubmit()"> but your function is named submitReg(), so that's causing the error Dustin Laine mentioned. Third of all: why using onClick="JavaScript:submitReg()" if you already trigger this function on the form action? This will probably cause two identical requests for no reason.

0

精彩评论

暂无评论...
验证码 换一张
取 消