这应该非常简单,但我不断收到错误。
我有一个 JSON 字符串,我需要向其中添加一个 js 变量,代码示例如下。本质上,我需要在 URL 字符串中的哈希标记之后添加 frameVideo 变量。
var frameVideo = window.location.hash.substring(1);
jwplayer("sVid").setup({
'share-video': {
'code': '<embed src="http://www.website.com/test.php#"\'.frameVideo.\'" width="480" height="270" allowfullscreen="true" />'
},
});
我需要做些什么不同的事情?