Jquery多語言下拉控制項,點選可實現跳轉相應語言

2021-06-02 10:03:36 字數 1371 閱讀 5803

$(document).ready(function () 

quyuyan();

// the select element to be replaced:

var select = $('select.makemefancy');

var selectboxcontainer = $('', );

var dropdown = $('', );

var selectbox = selectboxcontainer.find('.selectbox');

// looping though the options of the original select element

select.find('option').each(function (i)

// as of jquery 1.4.3 we can access html5

// data attributes with the data() method.

if (option.data('skip'))

// creating a dropdown item according to the

// data-icon and data-html-text html5 attributes:

var li = $('', );

li.click(function () );

});select.hide().after(selectboxcontainer);

// binding custom show and hide events on the dropdown:

dropdown.bind('show', function ()

selectbox.addclass('expanded');

dropdown.slidedown();

}).bind('hide', function ()

selectbox.removeclass('expanded');

dropdown.slideup();

}).bind('toggle', function ()

else dropdown.trigger('show');

});selectbox.click(function () );

// if we click anywhere on the page, while the

// dropdown is shown, it is going to be hidden:

$(document).click(function () );

});

前台包括如下:

軟體多語言

locale是指特定於某個國家或地區的一組設定,包括字符集,數字 貨幣 時間和日期的格式等。在windows中,每個locale可以用乙個32位數字表示,記作lcid。在winnt.h中可以看到lcid的組成。它的高16位表示字元的排序方法,一般為0。在它的低16位中,低10位是primary la...

多語言切換

專案中應用到了多語言切換,鞏固一下。貼上 大家一起學習。廢話不多說直接上 1 新增多語言 在res values 下預設有個strings,需要多種語言就來建立幾個strings,values右鍵 new 乙個 values res file file name 就是strings director...

Qt 筆記 多語言

1 使用命令 lupdate no obsolete main.pro 作用 將main.pro檔案內的所有源程式檔案中的被tr 包裝的字串打包成.ts檔案,此檔案可以使用qt的qt linguist開啟並翻譯 2 使用命令 lrelease main.pro 作用 通過.ts檔案生成.qm檔案,此...