HTML 到 Jade 帮助
我正在尝试创建一个带有 2 个输入字段和 1 个按钮的简单表单。
以下是需要翻译为 Jade 的 HTML:
<form name="input" action="html_form_action.asp" method="get">
Username: <input type="text" name="user" />
Password: <input type="text" name="pswd" />
<input type="submit" value="Submit" />
</form>
在我将这台计算机扔出窗外并派出一支杀戮小队追捕 Jade 模板语言开发人员之前,请帮助我。
I am trying to create a simple form with 2 input fields and 1 button.
Here's HTML that needs to be translated to Jade:
<form name="input" action="html_form_action.asp" method="get">
Username: <input type="text" name="user" />
Password: <input type="text" name="pswd" />
<input type="submit" value="Submit" />
</form>
Please help me before I throw this computer out of the window and send a kill squad after Jade templating language developers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
有更优雅和正确的方法。不要忘记可用性。跳过冒号,这不是纸质表格!
对于表单渲染,我使用 mixins。它使我的代码可重用且灵活。看这里:
There is more elegant and correct way. Don't forget about usability. And skip colons it's not a paper form!
For form rendering I'm using mixins. It makes my code reusable and flexible. Look here:
我最近注意到 Jade github 页面上添加了一个 HTML 到 Jade 转换器的链接:
https://github.com/ donpark/html2jade
可能值得一试,如果您有多个要转换的内容,而不是手工翻译。
I recently noticed on the Jade github page a link was added for a HTML to Jade converter:
https://github.com/donpark/html2jade
Might be worth checking out, rather than hand translating if you've got more than a few to convert.
您可以在 Jade 文档中使用纯 HTML,它将正确呈现(以防万一您需要使用它!)
You can use plain HTML in a Jade document and it will render correctly (Just incase you ever need to use it!)
有许多在线 HTML 到 JADE 转换器。这是一个很好的。
HTML 到 Jade 转换器
There are many online HTML to JADE converts. Here is a good one.
HTML to Jade converter