在 FBJS/Facebook 中使用 getElementById().getValue 时出现问题!
我正在使用此代码在 Facebook 中生成隐藏的 HTML 代码:
echo "<div id=\"y257y\" style=\"display:none;\">".$fdesc."</div>";
并且,我尝试使用以下代码将此元素返回到 JS 中
newVal=document.getElementById('y257y').getValue();
但是,我收到错误: Undefined
任何人都可以帮助我吗?
谢谢。
- 阿山
I am using this code to generate hidden HTML code in Facebook :
echo "<div id=\"y257y\" style=\"display:none;\">".$fdesc."</div>";
And, I am trying to get this element back in JS using the following code
newVal=document.getElementById('y257y').getValue();
But, I am getting an error: Undefined
Can anyone kindly help me out ?
Thanks.
-
ahsan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
而不是:
尝试使用:
您是否使用任何 JavaScript 库,例如 jQuery 或 Prototype?如果您使用 jQuery:
其他建议:
使用隐藏的表单元素:
在 JavaScript 中:
或者只是输出
标签:
并且无需在 DOM 中查找值 – 它已经存在在 JavaScript 中。
Instead of:
try using:
Are you using any JavaScript library, like jQuery or Prototype? If you're using jQuery:
Other suggestions:
Use hidden form element:
and in JavaScript:
Or just output a
<script>
tag:and there's no need to find the value in the DOM – it's already in JavaScript.
尝试使用文本区域?因为如果你真的很幸运的话,至少可能有一个 getValue 方法:
但有些事情告诉我这对你不起作用,facebook 可能不喜欢它。
这样做似乎更容易:
Try using a textarea? Since at least that may have a getValue method if you are really lucky:
But something tells me that is not going to work for you, facebook may not like it.
Seems easier just to do this: