innerHTML 的浏览器兼容性

发布于 2024-12-04 13:19:25 字数 1158 浏览 0 评论 0原文

我有一个简单的函数来刷新表格。它只是在 div 中创建一个表。它在 safari 和 chrome 中运行良好。但由于某种原因,它在 Firefox 中不起作用。谁能建议我一些替代方案,以便它也可以在 Firefox 中运行?

这是我的代码 -

function tableRefresh(){
     POIdiv.innerHTML=" <table id='POITable' border='1' > <tr><td>POI</td><td>Latitude</td><td>Longitude</td><td>Delete?</td></tr><tr  id='tr1'><td id='poinum'>1</td><td><input size=25 type='text' id='latbox' readonly=true/></td><td><input size=25 type='text' id='lngbox' readonly=true/></td><td><input type='button' id=1 value='Delete' onclick='deleteRow_addPOI(this.id)'/></td></tr></table>";
     }    

该函数在按钮的 onclick 事件下调用。

::::::::::编辑::::::::::::::

请尝试以下链接 -

http://128.233.104.33/passgui/editLeveledit.php?dbname=reganTest3

现在执行这些操作 -

  1. 单击在地图上添加一些点,
  2. 单击“添加新 POI”,

它应该升级两个表。请先在 Google Chore/ Safari 中尝试,然后再在 Firefox 中尝试。你可以发现差异。

谢谢

I have a simple function to refresh a table. It simply creates a table in a div. It works fine in safari and chrome. But for some reason it is not working in firefox. Can anyone suggest me some alternative of this so that it works in firefox as well?

Here's my code -

function tableRefresh(){
     POIdiv.innerHTML=" <table id='POITable' border='1' > <tr><td>POI</td><td>Latitude</td><td>Longitude</td><td>Delete?</td></tr><tr  id='tr1'><td id='poinum'>1</td><td><input size=25 type='text' id='latbox' readonly=true/></td><td><input size=25 type='text' id='lngbox' readonly=true/></td><td><input type='button' id=1 value='Delete' onclick='deleteRow_addPOI(this.id)'/></td></tr></table>";
     }    

This function is called under a button's onclick event.

::::::::::EDIT:::::::::::::

Please try the following link -

http://128.233.104.33/passgui/editLeveledit.php?dbname=reganTest3

Now do these -

  1. click on map to add some points
  2. click on "Add the new POIs"

It should upgrade both the tables. Please try it in Google Chore/ Safari first then try it in Firefox. You can find the difference.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

友谊不毕业 2024-12-11 13:19:25

定义“不工作”;它在 Firefox 中的 jsfiddle 测试 上对我来说效果很好,稍作修改,因为我们不知道您如何设置/获取 POIdiv 变量。

Define "not work"; it works fine for me on my jsfiddle test in Firefox, with a slight modification since we don't know how you're setting/getting the POIdiv variable.

他是夢罘是命 2024-12-11 13:19:25

更改

POIdiv.innerHTML=...

document.getElementById('POIdiv').innerHTML=...

Change

POIdiv.innerHTML=...

to

document.getElementById('POIdiv').innerHTML=...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文