我正在谈论其中一个弹出的对话框:http: //jquerymobile.com/test/docs/pages/page-dialogs.html
(移动设备的简称网址http://bit.ly/KhCGVD)
单击"打开对话框" - 在该对话框中,除非在链接中使用"data-ajax ="false"',否则在iOS中不能复制任何内容.(适用于Android)
放'-webkit-user-select:auto!important;' (或'text'而不是'auto')什么都不做.
添加javascript'document.documentElement.style.webkitTouchCallout ="auto";' 什么也没做.
我绝望,使这项工作,因为我已经建立了周围的复制将在iOS版以及由于Android上的工作假设整个事情,但直到它完成了iOS版没有测试:(.
任何帮助将不胜感激,谢谢.
编辑:在4.3.5 - 4.3.2 - iOS 5.1上测试 - 无法正常工作
我有宝石工作:可以从它发推文并提取信息.
我可以抓住这个哈希并打印出它的.text部分,但我无法弄清楚如何获取id_str和screen_name - 我真的需要解析的信息.
不知道我做错了什么.
<% Twitter.mentions_timeline.each do |mention| %>
<%= mention.text %> <%# dies on some of em, like mention.id_str - not sure why %>
<br /><hr />
<% end %>
Run Code Online (Sandbox Code Playgroud)
以下是Twitter.mentions_timeline哈希:
[#<Twitter::Tweet:0x007fd070de24a0
@attrs={
:in_reply_to_status_id_str=>"265276218855809024",
:retweet_count=>0,
:contributors=>nil,
:truncated=>false,
:text=>"@doodleboots http://t.co/VJOR0MgQ",
:in_reply_to_user_id_str=>"119208666",
:geo=>nil,
:retweeted=>false,
:possibly_sensitive=>false,
:in_reply_to_screen_name=>"doodleboots",
:id_str=>"265276345704124416",
:entities=>{:hashtags=>[],
:urls=>[{:display_url=>"is.gd/S3uOyu",
:indices=>[13, 33],
:expanded_url=>"http://is.gd/S3uOyu",
:url=>"http://t.co/VJOR0MgQ"}],
:user_mentions=>[{:name=>"doodle",
:indices=>[0, 12],
:screen_name=>"doodleboots",
:id_str=>"119208666",
:id=>119208666}]},
:in_reply_to_user_id=>119208666,
:in_reply_to_status_id=>265276218855809024,
:created_at=>"Mon Nov 05 02:16:24 +0000 2012",
:place=>nil,
:user=>{:profile_image_url_https=>"https://si0.twimg.com/profile_images/2808322935/d5da93a06dbd45959cb4dba0797689a5_normal.jpeg",
:id=>926557182,
:profile_background_image_url=>"http://a0.twimg.com/images/themes/theme1/bg.png",
:entities=>{:description=>nil},
:screen_name=>"Roslyn1bdzn",
:profile_link_color=>"0084B4",
:default_profile_image=>false,
:created_at=>"Mon Nov 05 01:17:20 +0000 …Run Code Online (Sandbox Code Playgroud) 新的反应和玩弄它.看不出任何明显的原因我使用forEach时出现错误,使用map时没有错误:
注意:我使用的是&符号(基于骨干的框架)Repos = 30个对象,每个对象有3个属性
export default React.createClass({
mixins: [ampersandReactMixin],
displayName: 'ReposPage',
render() {
const {repos} = this.props
return (
<div>
{
repos.forEach((repo) => {
return (
<div key={repo.id}>
<span>goodbye world</span>
</div>
)
})
}
</div>
)
}
});
Run Code Online (Sandbox Code Playgroud)
输出:
Warning: Any use of a keyed object should be wrapped in React.addons.createFragment(object) before being passed as a child.
warning.js:48 Warning: Any use of a keyed object should be wrapped in React.addons.createFragment(object) before being passed as a child.
warning.js:48 Warning: Any use …Run Code Online (Sandbox Code Playgroud)