How to pass value to a onclick function in (Jade)pug?

前端 未结 8 1586
长情又很酷
长情又很酷 2021-01-02 10:54

I am new to jade and stuck on this issue. I think I have tried everything from the StackOverflow posts and still at nothing.

The things I have tried



        
8条回答
  •  迷失自我
    2021-01-02 11:32

    button(type='button', onClick='function(\'' + someValue + '\')') Text

    This worked for me to use values that I passed to pug inside an onClick function.

提交回复
热议问题