⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 history.js

📁 一款C2C的网店程序 我也是在网上下载的
💻 JS
字号:
//show the order-details with ajaxfunction showOrder(mode, var_content, file){	$.get(		baseDir + file + '.php',		((mode == 1) ? {'id_order': var_content, 'ajax': true} : {'id_order_return': var_content, 'ajax': true}),		function(data)		{			$('#block-order-detail').fadeOut('slow', function()			{				$(this).html(data);				/* if return is allowed*/				if ($('div#order-detail-content table td.order_cb').length > 0)				{					//return slip : check or uncheck every checkboxes					$('form div#order-detail-content th input[type=checkbox]').click(function()					{							$('form div#order-detail-content td input[type=checkbox]').each(function()							{								this.checked = $('form div#order-detail-content th input[type=checkbox]').is(':checked');								updateOrderLineDisplay(this);							});					});					//return slip : enable or disable 'global' quantity editing					$('form div#order-detail-content td input[type=checkbox]').click(function()					{						updateOrderLineDisplay(this);					});					//return slip : limit quantities					$('form div#order-detail-content td input.order_qte_input').keyup(function()					{						var maxQuantity = parseInt($(this).parent().find('span.order_qte_span').text());						var quantity = parseInt($(this).val());						if (isNaN($(this).val()) && $(this).val() != '')						{							$(this).val(maxQuantity);						}						else						{							if (quantity > maxQuantity)								$(this).val(maxQuantity);							else if (quantity < 1)								$(this).val(1);						}					});				}				//catch the submit event of sendOrderMessage form				$('form#sendOrderMessage').submit(function(){					return sendOrderMessage();			});			$(this).fadeIn('slow');			$.scrollTo(this, 1200);		});	});}function updateOrderLineDisplay(domCheckbox){	var lineQuantitySpan = $(domCheckbox).parent().parent().find('span.order_qte_span');	var lineQuantityInput = $(domCheckbox).parent().parent().find('input.order_qte_input');	if($(domCheckbox).is(':checked'))	{		lineQuantitySpan.hide();		lineQuantityInput.show();	}	else	{		lineQuantityInput.hide();		lineQuantityInput.val(lineQuantitySpan.text());		lineQuantitySpan.show();	}}//send a message in relation to the order with ajaxfunction sendOrderMessage (){	paramString = "ajax=true";	$('form#sendOrderMessage').find('input, textarea').each(function(){		paramString += '&' + $(this).attr('name') + '=' + encodeURI($(this).val());	});	$.ajax({		type: "POST",		url: baseDir + "order-detail.php",		data: paramString,		success: function (msg){			$('#block-order-detail').fadeOut('slow', function() {				$(this).html(msg);				//catch the submit event of sendOrderMessage form				$('form#sendOrderMessage').submit(function(){					return sendOrderMessage();				});				$(this).fadeIn('slow');			});		}	});	return false;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -