我将以下作为参数传递给模态:
"<iframe width="350" height="197" src="http://www.youtube.com/embed/jsExp2ebB4s?feature=oembed" frameborder="0" allowfullscreen></iframe>"
然后,我尝试在我的show.js中动态渲染它......
$( “#modalpostvid”)的HTML( “PARAMS [:VID]”)。
但它加载文本(即将其加载为字符串)而不是嵌入的视频。
如何制作视频以便嵌入视频?
谢谢。
答案 0 :(得分:1)
试
$("#modalpostvid").html("<%= escape_javascript params[:vid].html_safe %>")