| | |
| | | var outerHTML = i[0].outerHTML;
|
| | | return outerHTML;
|
| | | }
|
| | |
|
| | | //生成阿里图标的元素
|
| | | function create_fa_font(cla, color, data) {
|
| | | var i = $('<i class="fa"></i>');
|
| | |
| | | var outerHTML = i[0].outerHTML;
|
| | | return outerHTML;
|
| | | }
|
| | |
|
| | | // 生成跳转的链接
|
| | | function skipUrl(page, province, city, county, home,battid,monnum) {
|
| | | var str = page+'?';
|
| | | if(province){
|
| | | str += '&province='+province;
|
| | | }
|
| | | if(city){
|
| | | str +='&city='+city;
|
| | | }
|
| | | if(county){
|
| | | str += '&county='+county;
|
| | | }
|
| | | if(home){
|
| | | str += '&home='+home;
|
| | | }
|
| | | if(battid){
|
| | | str += '&battid='+battid;
|
| | | }
|
| | | if(monnum){
|
| | | str += '&monnum'+monnum;
|
| | | }
|
| | | //var str = page+'?province='+province+'&city='+city+'&county='+county+'&home='+home;
|
| | | return str;
|
| | | } |