无法在Morzilla,IE8中使用javascript从数据网格中进行选择

时间:2021-05-27 01:21:50

In a form(File.aspx) i am generating another popup window (Lookup.aspx including a DataGrid). From that datagrid i can fill the textbox in File.aspx using javascript.It works in InternetExplorer7 & InternetExplorer8 .But in Morzilla the popup & datagrid is appearing,but i can't select from datagrid .

在一个表单(File.aspx)我生成另一个弹出窗口(Lookup.aspx包括一个DataGrid)。从那个datagrid我可以使用javascript填充File.aspx中的文本框。它可以在InternetExplorer7和InternetExplorer8中工作。但是在Morzilla中弹出和数据网格出现了,但我无法从datagrid中选择。

In same manner a calendar image onclick="displaycalendar(... );" i can select datetime to a textbox,it works in IE6 and IE7 but doent works in IE8 Morzilla.Please help me..

以相同的方式,日历图像onclick =“displaycalendar(...);”我可以选择日期时间到文本框,它可以在IE6和IE7中工作,但在IE8 Morzilla中可以使用。请帮助我..

1 个解决方案

#1


How are you accessing the textbox in Javascript? Mozilla expects document.getElementById() - IE lets you get way with accessing the textbox name alone. document.getElementById will work in both browsers.

你是如何在Javascript中访问文本框的? Mozilla期望document.getElementById() - IE让你可以单独访问文本框名称。 document.getElementById可以在两个浏览器中使用。

BTW - are you getting any errors in Mozilla? Check in Tools -> Error Console.

BTW - 你在Mozilla中遇到任何错误吗?签入工具 - >错误控制台。

#1


How are you accessing the textbox in Javascript? Mozilla expects document.getElementById() - IE lets you get way with accessing the textbox name alone. document.getElementById will work in both browsers.

你是如何在Javascript中访问文本框的? Mozilla期望document.getElementById() - IE让你可以单独访问文本框名称。 document.getElementById可以在两个浏览器中使用。

BTW - are you getting any errors in Mozilla? Check in Tools -> Error Console.

BTW - 你在Mozilla中遇到任何错误吗?签入工具 - >错误控制台。