我正在开发自己的基于网络的电子表格。我有它检测公式和其他细胞参考。我想做的下一步是......
虽然我的功能栏处于活动状态(聚焦),但如果我的第一个字符是等号,我点击另一个单元格,我希望能够检测到该单元格然后返回到公式栏并且插入该单元格位置。
我遇到的问题是如何跟踪从公式栏到单元格的移动,而不会让细胞获得焦点。我不会对其余部分有任何问题。我正在使用JavaScript和使用公平的块jQuery来完成大部分工作。我还没想出要跟踪哪些事件。
至于示例,我正在处理的网站已被锁定以进行开发,但制作Google电子表格甚至使用Excel,您应该看到我正在谈论的示例。
公式栏是文本输入,所有单元格都在表格中,是文本输入。
答案 0 :(得分:3)
使用“mousedown”事件并阻止立即传播。这样可以防止发生焦点,允许您引用文本输入但不将焦点发送给它。
$(".cell input[type=text]").mousedown(function(event){
if($("#formulaBar").val()[0] == "+"){
event.stopImmediatePropagation();
var cell = $(this).parent();
var row = cell.attr("data-row");
var col = cell.attr("data-column");
//Do something with the formula bar
}
});
我假设HTML标记是这样的:
<td data-row="0" data-column="0">
<input type="text" />
</td>
答案 1 :(得分:0)
嗨这是关于如何使用focusOut和by和focus的示例,如果公式文本框以“=”开头,那么您可以添加Cell坐标并将焦点返回到公式文本框,如果单击在输入公式已完成,您可以保存它或其他任何内容。
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
</head>
<body>
<input type="text" id="txtFormular" style="width:100%"/>
<br />
<input type="text" id="txtCell1" Coord="A1" style="width:50px"/>
<input type="text" id="txtCell2" Coord="A2" style="width:50px"/>
<input type="text" id="txtCell3" Coord="A3" style="width:50px"/>
<input type="text" id="txtCell4" Coord="A4" style="width:50px"/>
<input type="text" id="txtCell5" Coord="A5" style="width:50px"/>
<input type="text" id="txtCell6" Coord="A6" style="width:50px"/>
<input type="text" id="txtCell7" Coord="A7" style="width:50px"/>
<script>
$(function(){
var formulaOn = false;
$("#txtFormular").focusout(function(){
if(this.value.indexOf("=") == 0)
formulaOn = true
else
formulaOn = false;
});
$('#txtFormular').keypress(function (e) {
if (e.which == 13) {
//Save you formula
this.value = "";
this.blur();
}
});
$("input[id^='txtCell']").focus(function(){
if(formulaOn)
{
var txtFormulaVal = $("#txtFormular").val();
$("#txtFormular").val(txtFormulaVal +$(this).attr("Coord"));
$("#txtFormular").focus();
}
});
});
</script>
</body>
</html>