0

我有一个表,其中有一个“添加行”按钮。此按钮使用 JQuery 动态添加一行。它通过复制第一个 ... 然后将所有 id=".." 替换为递增的数字来工作。

问题是这些行有一个 YUI 自动完成,如下所示:

<td>
    <input type="hidden" name="location_num[0]" value="508318" maxLength="25" style="width:230px" id="location_num[0]"/>
    <input type="textbox" name="location_numDisplayDesc[0]" value="WINNIPEG" maxLength="25" style="width:230px" id="location_numDisplayDesc[0]"/>
    <div id="Container_location_num[0]" style="display:inline;"></div>

    <script type="text/javascript">

        // Initialize autocomplete
        var location_numAC = new YAHOO.widget.AutoComplete(
            "location_numDisplayDesc[0]",
            "Container_location_num[0]",
            locationDataSource,
            acConfig);

        location_numAC.useShadow = true
        location_numAC.useIFrame = true
        location_numAC.dataErrorEvent.subscribe(acErrorFunction);

        // Format results to include the reference number
        location_numAC.formatResult = function(resultItem, query) {
            return resultItem[0];
        };

        // Clear key before request
        location_numAC.dataRequestEvent.subscribe(function fnCallback(e, args) {
        YAHOO.util.Dom.get("location_num[0]").value = ""; });

        // Set key on item select
        location_numAC.itemSelectEvent.subscribe(function(event, args) {
            YAHOO.util.Dom.get("location_num[0]").value = args[2][1];
        });

        // Clear key when description is cleared
        location_numAC.textboxBlurEvent.subscribe(function fnCallback(e, args) {
            if (isEmpty(YAHOO.util.Dom.get("location_numDisplayDesc[0]").value)) {
                YAHOO.util.Dom.get("location_num[0]").value = "";
            } // end if
        });
    </script>
</td>

这段代码在 Firefox 中运行良好,并且新创建的自动完成功能运行良好,但在 IE(6 和 7)中我收到一个错误,这意味着 location_num_AC 没有成功创建。我相信这是因为它没有按应有的方式读取新创建的输入或 div。我试过用

$("Container_location_num[0]").ready(function {...});

但这似乎不起作用。有没有人有任何其他想法?

4

1 回答 1

2

在 IE 中插入 DOM 的表单字段不会像您预期的那样添加到表单集合中。

通常,您可以通过以下两种方式之一来引用表单域:

document.forms[0]["myFormName"];
document.forms[0][12];

也就是说,通过它的表单字段名称或它的索引。但是当您在 IE 中向 DOM添加表单字段时,您不能通过名称来引用它,只能通过它的索引来引用它。如果您的代码(或任何支持代码)正在按名称在集合中查找表单字段,那么您显然遇到了问题。

如果您唯一的关键是名称,您可以按索引遍历所有表单字段并找到您要查找的内容,但这显然是一个线性操作。您还可以循环查找哪些表单字段以数字方式而非名称进行索引,并自行更新表单对象。

我没有足够的细节来了解您的项目中如何(或是否)发生这种情况,但这是 IE 怪癖之一,听起来它可能正在发挥作用,因为您正在动态添加字段。

于 2009-11-09T22:27:57.533 回答