我想使用href从文件中调用一个函数。下面是我的javascript代码:
function createtable() {
function displaytable(argument) {
var tr=document.createElement('tr');
for (var i=0; i < argument.length; i++) {
var td=document.createElement('td');
if (i == 0) {
td.appendChild(document.createTextNode(argument[i]));
}
if (i == 1) {
td.appendChild(document.createTextNode(argument[i]));
}
if (i == 3) {
td.appendChild(document.createTextNode(argument[i]));
}
if (i == 2) {
td.ondblclick= function () {
var column_index= (this.cellIndex) -1;
var row_index= (this.parentNode.rowIndex);
search_cell(row_index,column_index);
}
td.appendChild(document.createTextNode(argument[i]));
}
tr.appendChild(td);
}
document.getElementById('table_body').appendChild(tr);
}
document.write("<table border=\"1\"><tr><th>INDEX</th><th>--CELL NAME--</th><th>--PIN NAME--</th><th>--PG PIN--</th></tr><tbody id='table_body'></tbody></table>");
for (var x=0; x < array_cells.length; x++) {
displaytable([x+1,array_cells[x].cell,array_cells[x].pins,array_cells[x].pg_pins])
}
function search_cell(row_index,column_index) {
//想用href调用这个函数 } }
我想在我的代码中添加一个功能,当我单击 html 表中的单元格时,它会使用 href 从文件中调用一个函数。