﻿$( function() {
	$("#tjh ul").html("加载中，请稍候...");
	$.ajax( {
		type: "GET",
		url: "getno.aspx",
		cache: false,
		data: "a=0&b=1&c=0&d=0",
		dataType: "xml",
		success: function(result) {
			$("#tjh ul").empty();
			$(result).find("nums").find("num").filter( function() {
				return $(this).attr("price") == "2000.00";
			} ).slice(0,14).each( function(i) {
				$("#tjh ul").append("<li>" + $(this).text() + "</li>\n");
			} );
		},
		error: function() { 
			$("#tjh ul").html("读取失败，请重试  <a href='javascript:void(0)'>点此链接</a>").find("a").click( function() {
				LoadIndexXml();
			} );			
		}
	} );
} );
