我試圖給邊距的特性「的setAttribute」:10px的到ID下載CSVCSS遺漏的類型錯誤:無法讀取空
下面是HTML和JAVASCRPIT:
<span style="display: inline;" id="download-csv"><input type="submit" id="csv_download" value="Download"></span>;
JavaScript :
var download_csv=document.getElementById("download-csv");
if(count_layer==1)
download_csv.setAttribute("style","margin-top:10px");
}else{
download_csv.setAttribute("style","margin-top:20px");
}
它拋出錯誤 TypeError:無法讀取null屬性'setAttribute'
結束與錯誤 –
不好意思寫雙倍時間style.style它是唯一一個款式風格再次嘗試這個先生,請。 –
先生,我寫了這一個,但相同的錯誤download_csv.style.marginTop =「10px」; –