0

我有一个脚本 ( TheForm.cfm),我通过cfdiv. 我想要的是在SubJScript.js. 出于某种原因,来自 bind ( FormSections.cfm) 的任何 jQuery 调用都不起作用。

我敢肯定,我做错了或没有看到这很简单。我当然可以多用一双眼睛。先感谢您。

以下是相关代码:

表格.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">&nbsp;New</td>
   </tr>
</table>

SubJScript.js

$a=jQuery.noConflict();

$a(document).ready(function($) {
   $('#XXX').on("click", function() {
      alert('Show this Msg');
   });
});
4

0 回答 0