ホームページ  >  記事  >  ウェブフロントエンド  >  mootools によって作成された関数 ie6 がエラーを報告しました。なぜですか? _html/css_WEB-ITnose

mootools によって作成された関数 ie6 がエラーを報告しました。なぜですか? _html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-24 12:11:37961ブラウズ

mootools によって書かれた関数 ie6 がエラーを報告します。なぜですか?
デモのアドレス: http://www.my-demo.info/question/blur.html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>page title</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script><script type="text/javascript">function update_shopping_cart(){	var form=document.getElementById('shopping_cart_form');		if(typeof form !='undefined'){		var inputs=form.getElements('input[name=cart_quantity[]]');		inputs.addEvent("click",function (){			this.store("old_value",this.value);		});		inputs.addEvent('blur', function (){			if(this.value != this.retrieve("old_value")){				form.submit();			}		});	}}window.addEvent("domready",function(){	update_shopping_cart();});</script></head><body>	<form action="#" id="shopping_cart_form">		<input type="text" size="4" value="1" name="cart_quantity[]">		<input type="text" size="4" value="2" name="cart_quantity[]">	</form></body></html>


ディスカッションへの返信 (解決策)

var form=$('shopping_cart_form');

IE6 がドキュメントを使用できないのはなぜですか。 getElementById(' shopping_cart_form');

jquery に変更します。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。