/*------------------------------------------------------------------------------------------
product.change.js
ç”°é¸¿ç«?
117119949@163.com
------------------------------------------------------------------------------------------*/

(function ($) {
    $(document).ready(function () {
			$('#ProductNameListID').change(function(){
				var ProductNameListID = $(this).val();				
				text = $('#ProductNameListID option:selected').text();
				arr = text.match(/\d*\.?\d+/g);
				$('#fitQuantity').val(arr[0]);
				$('#price').val(arr[1]);
			});
		});
})(jQuery);

