解决方案 »

  1.   

    $(function () {
                var Citys = [];
                $.each($('table tr td a'), function (i, d) {
                    var citys = this.title.split('-');
                    Citys[Citys.length] = { 'prove': citys[0], 'city': citys[1], 'href': this.href, 'name': this.innerText };
                })
                $.each(Citys, function (i, d) {
                    //这里写你想要的
                })
            })