0

我将以下作为参数传递给模态:

"<iframe width="350" height="197" src="http://www.youtube.com/embed/jsExp2ebB4s?feature=oembed" frameborder="0" allowfullscreen></iframe>"

然后,我尝试在我的 show.js 中以模态方式动态呈现它......

$("#modalpostvid").html("params[:vid]")

但它加载文本(即加载为字符串)而不是嵌入视频。

我怎样才能让它嵌入视频?

谢谢你。

4

1 回答 1

1

尝试

$("#modalpostvid").html("<%= escape_javascript params[:vid].html_safe %>")
于 2013-03-12T23:49:17.633 回答