innerHTML 的浏览器兼容性
我有一个简单的函数来刷新表格。它只是在 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
现在执行这些操作 -
- 单击在地图上添加一些点,
- 单击“添加新 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 -
- click on map to add some points
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
定义“不工作”;它在 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.
更改
为
Change
to