我有一个脚本(TheForm.cfm
),我通过cfdiv
绑定到另一个脚本。我想要的是在SubJScript.js
中触发相关的jQuery函数。出于某种原因,来自bind(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');
});
});