「jQuery」セレクタ.on(click)イベントのサンプル
JSPコード
<input type="button" name="fileDownload" value="xxx">
JavaScriptコード
$(“input[name=’fileDownload’]").on(“click",function(){
//some code
});
Coding Changes the World
JSPコード
<input type="button" name="fileDownload" value="xxx">
JavaScriptコード
$(“input[name=’fileDownload’]").on(“click",function(){
//some code
});