从iframe中提取文本坐标

时间:2018-05-01 12:27:43

标签: javascript iframe

我想从iframe中选择一个区域并将坐标发送到后端。更具体地说,我想要做的是让用户从存在表格的文件(pdf)中选择一个区域。我该怎么做呢?

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

请参阅https://github.com/tapmodo/Jcrop及其演示。

<Iframe src="" id="frame"/>

脚本:

<script type="text/javascript">

jQuery(function($){

  $('#frame').Jcrop({
    onChange:   showCoords,
    onSelect:   showCoords
  });

});

// Simple event handler, called from onChange and onSelect
// event handlers to show an alert, as per the Jcrop 
// invocation above

function showCoords(c)
{
  alert('x='+ c.x +' y='+ c.y +' x2='+ c.x2 +' y2='+ c.y2)
  alert('w='+c.w +' h='+ c.h)
};

</script>