Problems are not stop signs; they are guidelines.
問(wèn)題的出現(xiàn)不是讓你止步,而是給你指路。———— Robert Schuller
使用js來(lái)判斷來(lái)訪者的操作系統(tǒng)是xp還是win7,用一小段代碼即可實(shí)現(xiàn): var ua = navigator.userAgent; if(ua.indexOf("Windows NT 5")!=-1) { alert('您使用的是win32 XP系統(tǒng)!'); } else { alert('您使用的是Win7系統(tǒng)!'); } Javascript中的Navigator對(duì)象包含有關(guān)瀏覽器的信息,其中的userAgent中返回由客戶機(jī)發(fā)送服務(wù)器的 user-agent 頭部的值,在獲得的這個(gè)字符串中檢測(cè)是否有windows nt 5...