TheForm.cfm
を介して別のスクリプトにバインドしているスクリプト ( ) がありcfdiv
ます。私が望むのは、関連する jQuery 関数を で起動することですSubJScript.js
。何らかの理由で、バインド ( FormSections.cfm
) からの jQuery 呼び出しが機能していません。
私が間違っているか、見えていないのは単純なことだと確信しています。私は確かに余分な目を使うことができます. 前もって感謝します。
関連するコードは次のとおりです。
TheForm.cfm
<DIV id="TheBigBox">
<DIV id="SectionBody">
<span class="SectionHeader">This is the Name of the File</span>
<div id="tFormSec1" class="ThisFormSection_cls">
<cfdiv id="FormSec1" class="FormSection_cls" bind="url:FormSections.cfm?ATTRIBUTES.SecNo=1" style="float:inherit" bindOnLoad="true"/>
</div>
</DIV>
FormSections.cfm
<table id="ProjectTypes_tbl">
<tr>
<td><cfinput name="pTypeRow1" id="XXX" type="checkbox" value="New"> New</td>
</tr>
</table>
SubJScript.js
$a=jQuery.noConflict();
$a(document).ready(function($) {
$('#XXX').on("click", function() {
alert('Show this Msg');
});
});