我的索引页面中的Javascript

时间:2015-05-26 09:40:37

标签: javascript jquery html css

我的网站上有一个选择下拉列表 http://www.wearemovingto.com和第118行我有下拉列表的代码。按照我要去的速度,索引页面看起来非常混乱,因为我需要在另外200个国家/地区投入,而且我们都知道谷歌讨厌那个。 我已经尝试将下拉列表链接到一个js文件但是没有用,是的,我的js低于标准杆。我想要做的就是在js文件中包含所有下拉代码,但仍然在网站上有下拉列表

在源头上基本上看起来像这样 从第118行

public class ProblemFive {

    // Counts the number of numbers that the entry is evenly divisible by, as max is 20
    int twentyDivCount(int a) {    // Change to static int.... when using it directly
        int count = 0;
        for (int i = 1; i<21; i++) {

            if (a % i == 0) {
                count++;
            }
        }
        return count;
    }

    public static void main(String[] args) {
        long startT = System.currentTimeMillis();;
        int start = 500000000;
        int result = start;

        ProblemFive ff = new ProblemFive();

        for (int i = start; i > 0; i--) {

            int temp = ff.twentyDivCount(i); // Faster way
                       // twentyDivCount(i) - slower

            if (temp == 20) {
                result = i;
                System.out.println(result);
            }
        }

        System.out.println(result);

        long end = System.currentTimeMillis();;
        System.out.println((end - startT) + " ms");
    }
}

1 个答案:

答案 0 :(得分:1)

制作一系列国家/地区代码和名称。然后循环浏览它,将它们作为选项添加到您的国家/地区菜单中。

var countries = [ 
    { code: "US", name: "United States"},
    { code: "CA", name: "Canada"},
    ...
];
$.each(countries, function(code, name) {
    $("#country").append($("<option>", {
        text: name,
        value: code
    }));
});