$(document).ready(function () {
$('#textEditor').contents().keypress(function (e) {
if (e.which == 35) {
alert('# pressed');
//How to get '#' character offset relative to an iframe
}
return true;
});
#textEditor
是我在代码中使用的iframe的id
编辑: xy 坐标的偏移量,而不是 iframe 开头的字符数
提前致谢。