実際に私は zendframework-2.0.3 をやっています。zendframework-ZendSkeletonApplication-zf-release-2.0.3-0-g657a752 によると、すべてのスクリプトを追加しましたが、 機能し.ready()
ませんでした。私のビューページで、私は単にこのコードを追加しました
<script>
$(document).ready(function(){
alert('ok');
});
</script>
しかし、それは機能していませんが、 .click() およびその他の機能は機能しています。これは、レイアウトにスクリプトを追加する方法です headTitle('ZF2 '. $this->translate('Skeleton Application'))->setSeparator(' - ')->setAutoEscape(false) ?>
<?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
<!-- Le styles -->
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/images/favicon.ico'))
->prependStylesheet($this->basePath() . '/css/foundation.min.css')
->prependStylesheet($this->basePath() . '/css/foundation.css')
->prependStylesheet($this->basePath() . '/css/app.css')
?>
<!-- Scripts -->
<?php echo $this->headScript()->prependFile($this->basePath() . '/js/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',))
->prependFile($this->basePath() . '/js/bootstrap.min.js')
->prependFile($this->basePath() . '/js/app.js', 'text/javascript')
->prependFile($this->basePath() . '/js/jquery.foundation.orbit.js', 'text/javascript')
->prependFile($this->basePath() . '/js/jquery.js', 'text/javascript')
->prependFile($this->basePath() . '/js/validation.js', 'text/javascript')
->prependFile($this->basePath() . '/js/jquery.foundation.alerts.js', 'text/javascript')
->prependFile($this->basePath() . '/js/jquery.foundation.forms.js', 'text/javascript')
->prependFile($this->basePath() . '/js/jquery.foundation.buttons.js', 'text/javascript')
->prependFile($this->basePath() . '/js/date.js', 'text/javascript')
?>
</head>
私を助けてください