动态创建按钮 - JQueryMobile
如何使用 jQuertMobile 动态创建按钮。
How to create the button dynamically using jQuertMobile.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 jQuertMobile 动态创建按钮。
How to create the button dynamically using jQuertMobile.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
非常简单:
首先通过以下方式创建一个按钮 HTML JQuery 元素:
接下来,将按钮注入到页面中您想要的任何位置:
最后在按钮上运行 button() JQuery Mobile 命令:
您应该有一个功能性且 JQM 风格的按钮现在在您的页面中。
Very simple:
First create a button HTML JQuery element by:
Next, inject the button wherever you want it to be in the page:
And finally run the button() JQuery Mobile command on the button:
You should have a functional and JQM styled button in your page by now.
编辑:现在您触发的事件已完成。
详细信息和最新描述“如何让 JQM 处理我添加到 DOM 的内容?”在这里: http://jquerymobiledictionary.pl/faq.html
创建它,然后调用
page ()
元素上。它将把 jquery mobile 中的所有插件和样式应用到您创建的任何元素。EDIT: Now it's done with an event you trigger.
Details and up-to-date description "How do I make JQM work with content I add to DOM?" is here: http://jquerymobiledictionary.pl/faq.html
Create it and then call
page()
on the element. It will apply all plugins and styles from jquery mobile to any element you create.简单:
这里的例子: jquery mobile 动态创建网格
Simple:
here example: jquery mobile create grid dynamically
上面的链接已损坏,该解决方案对我不起作用。
以下代码不起作用:
按钮已添加并且无需调用
$('#add2').page();
即可完美运行,但它没有 JQuery Mobile 样式。因此,在将按钮添加到 DOM 后,调用.page()
并不是应用样式的有效修复方法。Above link is broken and the solution doesn't work for me.
The following code does not work:
The button is added and works perfectly without calling
$('#add2').page();
but it has no JQuery Mobile styling. Calling.page()
is therefore not a working fix for applying the styling after adding the button to the DOM.