0
<script language="javascript" >
function GetData(cell,row){
var excel = new ActiveXObject("Excel.Application");
var excel_file = excel.Workbooks.Open("http://kb.healthnet.com/al/12/2/72550.xls");
var excel_sheet = excel.Worksheets("CA 2012-2013 HMO Plans");
var data = excel_sheet.Cells(cell,row).Value;
var data2 = excel_sheet.Cells(cell,row).Value;
document.getElementById('div1').innerText = data;
document.getElementById('div2').innerText = data2;
}
</script>

<table>
<tr>
<td>
<input type="button" value="Hearing Services" onClick="GetData(45,2);(46,2);" />
</td>
<td>
<div id="div1" style="background: #e2e2e2; width:'100%';" align="center">45,2 will display here</div>
</td>
</tr>
<tr>
<td></td>
<td>
<div id="div2" style="background: #e2e2e2; width:'100%';" align="center">46,2 will display here</div>
</td>
</tr>
<table>

看,在 45,2 和 46,2 td 中,只有 45,2 显示在两个 td 上。我已经尝试改变几乎所有东西,所以我认为我缺乏其结构的功能逻辑。我一直在尝试浏览书籍,因为这个项目对时间很敏感,所以很难集中注意力。

4

1 回答 1

0

是什么GetData(45,2)&(46,2)

如果您尝试执行两个单独的函数调用,则应该是GetData(45,2)and again GetData(46,2)。但是您使用了一个奇怪的运算符,&--您是要连接这些值吗?如果是这样,您在 Javascript 中使用 VB 运算符。

为了解决您的显示问题,您想完成什么?提供单元格中的数据示例,以及您希望 div 在其内容更新后包含的内容。那么我们可能会为您提供更多帮助。

此外,将函数作为文本放入onclick属性中并不是最佳实践。一般来说,最好创建一个实际的函数,并在页面加载时附加它:

function hearingServicesClick() {
   GetData(45, 2);
   GetData(46, 2);
}

document.getElementById('hearingservices').onclick = hearingServicesClick;
于 2013-06-08T01:27:22.357 回答