アプリケーションでsitemeshを使用しています。デコレータjsp<decorator:head>で、頭と体のタグに追加しました:
<body onload="<decorator:getProperty property='body.onload'/>" >
だから私onloadは私のjspページで本文を処理したいと思います。私は次のものを追加しました:
<script type="text/javascript">
function init() {
alert("hi");
}
</script>
</head>
<body onload="javascript:init();">
しかしinit()、私のjspページでは機能しません。