css - What is the correct syntax to refer to a gradient background color in javascript -


मेरे पास इस तरह जावास्क्रिप्ट कोड का एक टुकड़ा है।

  document.getElementById ( स्थिति) .style.backgroundColor = '# 800,080';  

कोड में '# 800080' के बजाय मैं निम्नलिखित ढाल पृष्ठभूमि का रंग संदर्भित करना चाहता हूं।

  .mybk {background: - Moz-linear-gradient (शीर्ष, # सीसीसी, # 000);}  

ऐसा करने के लिए सही सिंटैक्स क्या है?

मैंने इसे करने की कोशिश की लेकिन यह नहीं है काम।

  document.getElementById (pos) .style.backgroundColor = .mybk;  

बहुत बहुत धन्यवाद।

आप तत्व जोड़ सकते हैं वर्ग के लिए myBK :

  document.getElementById (pos) .className + = "myBK";  

या आप पृष्ठभूमि संपत्ति के लिए मान असाइन करें:

  document.getElementById (pos) .style.background = " -मोझ-रेखीय-ढाल (शीर्ष, # सीसीसी, # 000) ";  

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -