您好,登錄后才能下訂單哦!
jquery.form.js上傳出現(xiàn)$.handleError 、以及 $.httpData錯(cuò)誤
或表單提交不了:
原因:
首先,jquery1.4以后的版本不在支持這兩個(gè)方法。
解決方法:
添加
(在jquery.form.js)中添加如下方法:
$.httpData=function( xhr, type, s ) {
var ct = xhr.getResponseHeader( 'content-type'), xml = type == 'xml' || !type && ct && ct.indexOf( 'xml' ) >=0, data = xml ? xhr.responseXML: xhr.responseText; if ( xml && data.documentElement.tagName == 'parsererror' )
throw 'parsererror' ; if ( s && s.dataFilter ) data = s.dataFilter( data, type );if ( typeof data === 'string' ){if ( type == 'script' ) jQuery.globalEval( data ); if ( type == 'json' )
data = window[ "eval" ]( '(' + data + ')' ); } return data; };
$.handleError= function (s, xhr, status, e) {
if (s.error) {
s.error.call(s.context || s, xhr, status, e); }
if (s.global) {
(s.context ? jQuery(s.context) : jQuery.event).trigger('ajaxError', [xhr, s, e]); }
}
這兩個(gè)函數(shù) 即可。
另外:高版本的js放在最前面,低版本的應(yīng)放在后面。表單提交不了。
submitform_validator.js 中應(yīng)把 script:[websiteurl] 修改成 script[websiteurl]
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。