エラーを返さず、ie9で機能しているため、これをデバッグするのに苦労しています。スクリプトが ie9 では機能するが、ie8 や ie10 では機能しないような一般的な問題があるのではないかと考えていました。このバグがバージョンをスキップするのはかなり奇妙だと思います。
私のコード:
<script type="text/javascript">
jQuery(function($){
// Create variables (in this scope) to hold the API and image size
var jcrop_api,
boundx,
boundy,
// Grab some information about the preview pane
$preview = $('#preview-pane'),
$pcnt = $('#preview-pane .preview-container'),
$pimg = $('#preview-pane .preview-container img'),
xsize = $pcnt.width(),
ysize = $pcnt.height();
console.log('init',[xsize,ysize]);
$('#picture').Jcrop({
aspectRatio: <?php echo $_POST["aspectRatio"]; ?>,
setSelect: [ 0, 0, 300, 300 ],
onSelect: updateCoords
},function(){
// Use the API to get the real image size
var bounds = this.getBounds();
boundx = bounds[0];
boundy = bounds[1];
// Store the API in the jcrop_api variable
jcrop_api = this;
// Move the preview into the jcrop container for css positioning
$preview.appendTo(jcrop_api.ui.holder);
});
function updatePreview(c)
{
if (parseInt(c.w) > 0)
{
var rx = xsize / c.w;
var ry = ysize / c.h;
$pimg.css({
width: Math.round(rx * boundx) + 'px',
height: Math.round(ry * boundy) + 'px',
marginLeft: '-' + Math.round(rx * c.x) + 'px',
marginTop: '-' + Math.round(ry * c.y) + 'px'
});
}
};
function updateCoords(c)
{
$('#x').val(c.x / <?php echo $correctieCoordinates; ?>);
$('#y').val(c.y / <?php echo $correctieCoordinates; ?>);
$('#w').val(c.w / <?php echo $correctieCoordinates; ?>);
$('#h').val(c.h / <?php echo $correctieCoordinates; ?>);
};
function checkCoords()
{
if (parseInt($('#w').val())) return true;
alert('Please select a crop region then press submit.');
return false;
};
});
</script>
jcrop 関数は、ie8 および ie10 では初期化されません。ただし、ie9 およびすべての主要なブラウザーで動作します。