0

jquery1.7を使用しています。

指定された要素から$to要素にすべての属性をコピーしようとしています。onchange属性(イベント)を除いて、すべてがうまく機能します。IDもコピーされますが、新しい要素でchange()をトリガーしようとすると、次の.jsエラーが発生します。変更ハンドラーを再度追加しても、change()を呼び出しても失敗します。 2回目は、何かアイデアがありますか?:

SCRIPT438:オブジェクトはプロパティまたはメソッドをサポートしていません'apply' jquery-1.7.2.min.js、3行目文字3463

  var $to = $("#Someelement");
    var attributes = $("#AssignmentStatusIdNew").prop("attributes");
    $("#AssignmentStatusIdNew").remove();

     // loop through <select> attributes and apply them to $to...
                $.each(attributes, function () {
                    if (window.jqueryMinorVersion >= 6) {
                        $to.prop(this.name, this.value);
                    } else {
                        $to.attr(this.name, this.value);
                    }
                });

$("#AssignmentStatusIdNew").change(AssignmentStatusId_ValueUpdated);
    $("#AssignmentStatusIdNew").change();
4

0 に答える 0