我试图用用户首选颜色突出显示单元格。用户将选择一个单元格并拖动鼠标以选择要用所选颜色着色的多个单元格。当用户单击并拖动鼠标而不使用内联事件处理程序时,如何触发存在于单独文件中的javascript函数(我知道我必须将文件包含到html文件中,我已经完成了)。
代码可以拖动和选择,但我想在用户点击并拖动单元格时调用此函数。在我使用google.setOnLoadCallBack调用此函数之前,但这只会调用一次。我希望用户有多个选择。我希望我有道理。
HTML
<section id="importance">
<label class="green">Green</label>
<input type="radio" name="importance" value="green">
<label class="yellow">Yellow</label>
<input type="radio" name="importance" value="yellow">
<label class="orange">Orange</label>
<input type="radio" name="importance" value="orange">
<label class="red">Red</label>
<input type="radio" name="importance" value="red">
</section>
<table cellpadding="0" cellspacing="0" id="our_table">
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
<tr>
<td>d</td>
<td>e</td>
<td>f</td>
</tr>
<tr>
<td>g</td>
<td>h</td>
<td>i</td>
</tr>
</table>
的Javascript
function select_multiple() {
var isMouseDown = false;
// id for all the cells that were selected at the same time
var colorGroupId = Math.floor(Math.random() * 1000);
var highlight = find_importance_color();
$("#our_table td")
.mousedown(function () {
isMouseDown = true;
$(this).toggleClass(highlight);
$(this).attr("data-highlightedId", colorGroupId);
return false; // prevent text selection
})
.mouseover(function () {
if (isMouseDown) {
$(this).addClass(highlight);
}
});
$("#our_table td")
.mouseup(function (event) {
isMouseDown = false;
// time_importance(event);
});
}
function find_importance_color() {
return $('#importance input[name=importance]:checked').val();
}
CSS
.green {
background-color: green;
}
.yellow {
background-color: yellow;
}
.orange {
background-color: orange;
}
.red {
background-color: red;
}
table td {
width:100px;
height:100px;
text-align:center;
vertical-align:middle;
background-color:#ccc;
border:1px solid #fff;
}
答案 0 :(得分:3)
将初始化函数传递给jQuery就绪处理程序:
$(document).ready(select_multiple);
jQuery将在加载文档时调用它。
答案 1 :(得分:0)
基于最基本的变化,我相信你所寻找的是我在这里所做的:
http://jsfiddle.net/trakkasure/CtRYd/
// On ready function.
$(function(){
var isMouseDown = false;
// id for all the cells that were selected at the same time
var colorGroupId = Math.floor(Math.random() * 1000);
var remove = false;
$("#our_table td")
.mousedown(function () {
var highlight = find_importance_color();
isMouseDown = true;
remove = $(this).hasClass(highlight);
if (remove)
$(this).removeClass(highlight);
else $(this).addClass(highlight);
$(this).data("highlightedId", colorGroupId);
return false; // prevent text selection
})
.mouseover(function () {
if (isMouseDown) {
var highlight = find_importance_color();
if (remove)
$(this).removeClass(highlight);
else $(this).addClass(highlight);
}
});
$(document.body)
.mouseup(function (event) {
isMouseDown = false;
// time_importance(event);
});
function find_importance_color() {
return $('#importance input[name=importance]:checked').val();
}
})
我删除了选择倍数的外部函数调用,并根据是否设置了所选颜色调整了颜色切换。
您只需要创建一次事件,因此这应该放在jquery文档就绪处理程序中。
此外,如果将鼠标放在表格之外,则不会触发鼠标按下事件。因此,在文档正文中监听事件将解决这个问题。