2

我的页面中有此代码。

$(document).ready(function () {
            $("#ba_object_Code").change(function () { $("#HRBK").val($(this).val()); });
            $.cookie('cookie_name', 'cookie_value');
            if (sessid == 'xyz') {
                $("#ControlPlanID").removeAttr('disabled');
            }
            $(".t-grid-action.t-button.t-state-default.t-grid-add").click(function () {
                $.cookie('sessid', 'xyz');
            });

        });

我收到此错误

Microsoft JScript 运行时错误:对象不支持此属性或方法

4

2 回答 2

1

你没有定义 sessid,所以当你调用它时,它会失败。

请参阅工作示例:http: //jsfiddle.net/zNDHN/

$(document).ready(function () {

            var sessid = $.cookie('sessid');

            $("#ba_object_Code").change(function () { $("#HRBK").val($(this).val()); });
            $.cookie('cookie_name', 'cookie_value');
            if (sessid == 'xyz') {
                $("#ControlPlanID").removeAttr('disabled');
                console.log('cookie_found');
            }
            $(".t-grid-action.t-button.t-state-default.t-grid-add").click(function () {
                $.cookie('sessid', 'xyz');
                console.log('cookie_created');
            });

        });
于 2011-10-26T20:33:29.817 回答
1

顺序很重要,jquery 文件必须包含在_layout.cshtml 中以防使用母版页... “JQuery”未定义

于 2012-07-24T11:42:25.260 回答