我試圖測試特定瀏覽器(JavaScript方式)上的可用功能。檢查是否有效
如果我剛纔輸入此,例如:
function checksetAttribute(){
if(document.getElementById("blar").setAttribute("name","blarDiv")){
alert("Your browser supports it.");
}
else{
alert("Your browser does not support it.");
}
}
這會返回一個真正的答案,屬性(IES)是否不行?
取決於你想測試什麼。如果你想測試'setAttribute'方法是否存在,那麼否,如果它不存在就會拋出一個錯誤。 –
你想檢查什麼? – Bergi