适应IE、FireFox、Google浏览器的回车提交事件

	function submitEvent(event) {
		if (event.keyCode == 13 || event.which == 13) {
			toSubmit();
		}
	}

你可能感兴趣的:(浏览器,function,Google,IE,firefox)