html lang屬性的疑惑

2021-08-30 16:51:09 字數 863 閱讀 5390

學習xhtml過程中,發現很多標籤都可用lang屬性,但是lang屬性的用途是什麼呢?

在《html xhtml css bible 5th edition》一書中是這樣講解的:

[b]most tags support the lang attribute, which defines the language in which the content of the

tag should be displayed. for example, specifying en corresponds to english; en-us specifies the

united states version of english (as opposed to uk). this attribute has the same format as the

rest of the attributes: lang="en-us".[/b]

書中說是定義了標籤內容使用的語言。但是在具體的應用中也沒發現有什麼用途一樣?

------------test.html-----------------

你好hello

こんにちは

안녕하세요

------------test1.html----------------------

你好hello

안녕하세요

test.html使用了lang屬性來標示標籤內容的語言。

test1.html沒有使用lang屬性來標示標籤內用的語言。

注:為了防止utf-8能顯示所有語言的內容,故標籤中設定為gbk。

但是結果發現,兩個網頁效果一樣,都能正常顯示。

是不是說明,這個lang屬性沒用呢?還是有什麼其他可以使用的地方?

小凱的疑惑

小凱手中有兩種面值的金幣,兩種面值均為正整數且彼此互素。每種金幣小凱都有無數個。在不找零的情況下,僅憑這兩種金幣,有些物品他是無法準確支付的。現在小凱想知道在無法準確支付的物品中,最貴的價值是多少金幣?注意 輸入資料保證存在小凱無法準確支付的商品。輸入格式 輸入資料僅一行,包含兩個正整數a和b,它們...

關於getopt long的疑惑

下面是乙個簡單的解析命令列引數的程式,但是如果把 static const char const shortopts ho v static const struct option longopts void formatprocname char argv,char procname,int si...

快排的疑惑?

以前一直不理解快排是什麼東西,那天忘記看了乙個什麼突然感覺明白了快排是什麼東東。然後以公升序排列為例寫了乙個程式。然後按照下面的思路寫了一段 快排就是找乙個數作為基數,與其比較比起比起小的放在左邊,比其大的放其右邊,遞迴其左右,一般情況下是選第乙個數作為基數。void swap int x,int ...