我有一张表,我试图用其他网站的动态数据填充单元格,例如日期字段。
<tr>
<td><b>Date</b></td>
</tr>
<tr>
<td>value</td>
</tr>
当我在其他网站上查看日期的来源时。我会用它的元素来称呼它。
var x = document.getElementById("Scheduled_Date__c");
所以代码看起来像这样:
<script>
<tr>
<td><b>Date</b></td>
</tr>
<tr>
<td var x = document.getElementById("Scheduled_Date__c");></td>
</tr>
</script>
但数据字段只显示为空白。我对HTML编码很新。我正确接近这个吗?
答案 0 :(得分:1)
您必须获取td元素的值并将其放入单元格中。
var x = document.getElementById("Scheduled_Date__c"); //gets the element
x.innerText //is the value of the td element that goes into the cell.