玉按钮onclick

时间:2013-06-20 12:00:33

标签: pug

我没有找到任何正常的玉手册,需要知道我是否正确编写了我的代码行。 我使用了This converter

button#Black(style='width: 25px; height: 25px; background-color: black;', type='submit', onclick='(color=', black='black')

请知道onclick部分是否正确。提前致谢

1 个答案:

答案 0 :(得分:8)

您不应该在HTML标记上设置事件处理程序

使用inline css和使用js inline event handlers attributes时,人们普遍认为这是一种不好的做法。


See here the jade documentation

语法不正确。你可以see here the jade attribute syntax。你的行应该如下:

button#Black(
  type='submit'
  style='width: 25px; height: 25px; background-color: black;'
  onclick="if you plan to use single quotes here, use double quotes outer"
)

注意:我将线条拆分以便更好地阅读,但没有必要这样做。