在 jquery 中创建一个表单(大部分)[可联系]?
我只需要有人帮助解释这个 JQ 插件中的 HTML。
其名为“可联系”
person/people 使用 javascript 制作了一个弹出表单,大部分 html 都在 js 中,一个
< div >
用于在 html 文件上调用表单。 从本质上讲,它允许将非侵入式表单放置到页面上。
谁能帮忙解释一下编码的html部分谢谢
I just need a little help fomr someone to help explain the HTML within this JQ plugin.
plugin and demo are here: plugin & Demo
its called "Contactable"
the person/people made a pop-out form using javascript, most of the html is in the js and one
< div >
is used to call the form on a html file.
Essentually it allows for a non invasive form to be placed on to a page.
can anyone help explain the html part of the coding thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要解释什么? jQuery 将以下 HTML 插入到选择器匹配的元素中(来自您链接到的演示页面):
它使用以下长行来执行此操作。
this
将是对选择器匹配的任何元素的引用(如果有多个,则将表单插入到每个元素中):What do you need explaining? The jQuery inserts the following HTML into the element matched by the selector (from the demo page you linked to):
It does so with the following long line.
this
will be a reference to whatever element was matched by the selector (if there were several, the form is inserted into each):