Jquery动态生成按钮无css
我正在从 Google Places Api 获取一些数据,我正在使用 jquerymobile 向用户显示最近的地点,数据采用 JSON 格式,我想生成一组按钮,以便用户轻松单击所选位置。
数据已生成,但按钮显示为没有样式的链接,即使是与另一个具有样式的按钮相同的代码。这是代码片段。
$.each(pdata.results, function(key) {
if (key>0 && key<6) {
$('#dPlaces').append('<a href="#" data-role="button">'+pdata.results[key].name+'</a>');
} //endif
}); //each
返回数据但没有按钮样式。想法是我将放置一个 onclick() 来设置一些值并使用 JQM 样式的按钮列表。
谢谢。
诺曼
I am fetching some data from a Google Places Api, I am using jquerymobile to show a user nearest places, the data comes in JSON I want to generate a set of buttons so is easy for user to click selected location.
The data is generated but the button is showed as a link with no style, even is the same code of another button with style. here is the code snippet.
$.each(pdata.results, function(key) {
if (key>0 && key<6) {
$('#dPlaces').append('<a href="#" data-role="button">'+pdata.results[key].name+'</a>');
} //endif
}); //each
Data is returned but no Button style.. the idea is I will put a onclick() to set some value and way a list of buttons but with JQM style.
thanks.
Norman
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要刷新页面,尝试这样的操作:
或者可能:
更新:
文档: http://jquerymobile.com/demos/1.0a4.1/#docs/api/events.html
You need to refresh the page, try something like this:
or maybe:
UPDATE:
Docs: http://jquerymobile.com/demos/1.0a4.1/#docs/api/events.html