我有以下 jQuery 代码:
<script type="text/javascript">
$(document).ready(function() {
var color = ['none', 'green', 'yellow', 'red'];
$('table').on('change','select', function() {
$(this).parents('td').css('background', color[$(':selected', this).index()]);
});
});
</script>
Which highlights all table cells on a row when an option in a select box is chosen. 我已经下载并实现了 jQuery cookie 插件。我的问题是如何实现功能(附加代码),以便在刷新页面或用户注销时,表格单元格的行将保持突出显示。