我有一个网站,允许用户使用标签嵌入他们的视频,例如 .
<iframe width="560" height="315" src="http://www.youtube.com/embed/se2P7hjPanE" frameborder="0" allowfullscreen></iframe>
实际上这个 iframe 字符串来自这样的服务
<br />
\n<iframe width="560" height="314''
src="http://www.youtube.com/embed/se2P7hjPanE" frameborder="0"
allowfullscreen></iframe>
我怎样才能得到我的原始 iframe 字符串如何解析 src 值,也可能是其他值来加载视频实际上我使用了 MWfeedparser(https://github.com/mwaterfall/MWFeedParser)但我没有像这样
<iframe width="560" height="314'' src="http://www.youtube.com/embed/se2P7hjPanE" frameborder="0" allowfullscreen></iframe>
在高度属性之后我得到 (' ') 而不是 "
我该如何解决这个问题
我想从上面的帧中获取 src 值我想在 iphone 的 webview 中播放该视频
所以我想在我的 iphone 中播放那个特定的视频(客户端上传的)。