我用html表构造了我的日历,只有很少的日期是可以选择的。所以我需要禁用所有其他数据。
突出显示td :的函数
/* Get all rows from your 'table' but not the first one
* that includes headers. */
var rows = $('td').not(':first');
/* Create 'click' event handler for rows */
rows.on('click', function (e) {
我只想让getElementById正常工作,但是我能做到,我用chrome得到了这个错误:
Uncaught ReferenceError: calculate is not defined
下面是html:
<html>
<body>
<table>
<tr><td>Input the test variable:</td>
<td><input id="x" onchange="calculate();"></td></tr>
&