我正在尝试使用javascript将从PHP解析的输入值分配给FlashVars
<input id="feed" type="hidden" value="http://localhost/photo/" />
... other HTML code goes here ...
var flashvars = {
feed: document.getElementById('feed').value(),
... other flashvars code goes here ...
}
但是这似乎不起作用,无论如何要将其拉下来?谢谢。
答案 0 :(得分:2)
如果没有()
,则值不是函数。
更改
feed: document.getElementByID('feed').value(),
到
feed: document.getElementByID('feed').value,