这是我的 HTML 页面。
<html>
<head>
<title>Table </title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
</script>
</head>
<body>
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<input id ="export" type = "button" value = "Export"></input>
</body>
</html>
现在我希望用户将网页上的内容导出到 Excel 表中。我怎样才能做到这一点 ?我不想使用 javascript,因为在这种情况下,代码将依赖于浏览器?
任何建议!提前致谢。
PN:我在 stackoverflow 中遇到了几个问题,说使用 jQuery 可能是一个不错的选择。但问题是我对 jQuery 的了解为零。