我正在设计一个数据表,该表需要提供能够粘贴从excel复制的数据行的功能。但是,onPaste事件不会在Internet Explorer中触发。我能够做到这一点,并在chrome中获取剪贴板数据。
<Table className={classes.table} aria-labelledby="tableTitle">
<EnhancedTableHead
numSelected={selected.length}
order={order}
orderBy={orderBy}
onSelectAllClick={this.handleSelectAllClick}
onRequestSort={this.handleRequestSort}
rowCount={data.length}
/>
<TableBody onPaste={event => this.handlePaste(ClipboardEvent)}>
{stableSort(data, getSorting(order, orderBy))
.map(n => {
const isSelected = this.isSelected(n.id);
return (
<TableRow
hover
onClick={event => this.handleClick(event, n.id)}
role="checkbox"
aria-checked={isSelected}
tabIndex={-1}
key={n.id}
selected={isSelected}
>
<TableCell padding="checkbox">
<Checkbox checked={isSelected} />
</TableCell>
<TableCell component="th" scope="row" padding="none">
{n.udf}
</TableCell>
<TableCell align="right">{n.ticker}</TableCell>
<TableCell align="right">{n.transType}</TableCell>
<TableCell align="right">{n.qty}</TableCell>
<TableCell align="right">{n.portfolio}</TableCell>
</TableRow>
);
})}
{emptyRows > 0 && (
<TableRow style={{ height: 49 * emptyRows }}>
<TableCell colSpan={6} />
</TableRow>
)}
</TableBody>
</Table>
答案 0 :(得分:0)
如果您查看文档,则会发现支持粘贴事件,并且与OnPaste事件的兼容性未知。
我对OnPaste事件进行了测试,发现该事件正在Internet Explorer中运行。
问题是Internet Explorer不支持剪贴板数据。
因此您将无法使用它访问数据。
经过测试的代码:
<!DOCTYPE html>
<html>
<body>
<input type="text" onpaste="myFunction()" value="Try to paste something in here" size="40">
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "You pasted text!";
}
</script>
</body>
</html>
Internet Explorer 11中的输出:
参考文献:
或者,您可以尝试在下面的链接中引用示例,以帮助您解决问题。