Browse Source

kw basic search

ming 3 years ago
parent
commit
ff940bb9e8
1 changed files with 1 additions and 27 deletions
  1. 1 27
      similar_web/keywords.html

+ 1 - 27
similar_web/keywords.html

@@ -340,7 +340,6 @@ function check_form(){
             type: 'post',
             data: objstr,
             success: function(suc_data) {
-                
                 response = suc_data
                 sitename.textContent =response.SiteName;
                 descriptions.textContent=response.Description;
@@ -348,32 +347,7 @@ function check_form(){
                 sitetitle.textContent=response.Title;
                 countryrank.textContent=response.CountryRank;
                 category.textContent=response.Category;
-                $('#maxflow').html(response.totalVisits)
-                key_ary=[];
-                val_ary=[];
-                
-                for (const [key, value] of Object.entries(response.EstimatedMonthlyVisits)) {
-                  key_ary.push(key);
-                  val_ary.push(value);
-                }
-                
-                option = {
-                    xAxis: {
-                        type: 'category',
-                        boundaryGap: false,
-                        data: key_ary
-                    },
-                    yAxis: {
-                        type: 'value'
-                    },
-                    series: [{
-                        data: val_ary,
-                        type: 'line',
-                        areaStyle: {}
-                    }]
-                };
-                    myChart.setOption(option);
-                    closeNav()
+
               },
             //data:JSON.stringify({n1:"12",n2:"22"}),
             error: function (error) {