Setting title attribute with Javascript function

后端 未结 3 1206
逝去的感伤
逝去的感伤 2021-01-04 09:12

I am trying to find, if I can pass a value on the title attribute of a label element using Javascript?

I have tried the following Javascrip

3条回答
  •  攒了一身酷
    2021-01-04 09:13

    You can't inline javascript like this.

    What you may do is

    1) give an id to your label and put this at the end of your body

    
    

    Demonstration

    2) if you really want to inline the call, write this at the point where you want your label :

    
    

    (this is really not recommended)

提交回复
热议问题