当前位置: 首页 > 工具软件 > jQuery Touch > 使用案例 >

jQuery jQueryUI Tips

常坚
2023-12-01

1. jQuery 修改input输入框type属性时报错的处理

uncaught exception type property can’t be changed

使用代码$("#pwd").attr("type","password")时出现上面的错误。
猜测是该版本jQuery不允许修改控件type属性,使用原生js语句可以解决这个问题。
$("#txtpwd").focus(function () {
    if ($(this).attr("type") == "text") $(this)[0].type = "password";
});

补充:
发现IE不支持更改控件的type属性,无奈采用新增控件替换的方式。

2. jQuery autoComplete 按服务器返回格式修改数据样式
            $(c).autocomplete({
                source: function (request, response) {
                    $.ajax({
                        type: "POST",
                        url: "/rest/service/getlist",
                        dataType: "json",
                        contentType: "application/json;utf-8",
                        data: '{ Name: "{0}" }'.format(request.term),
                        success: function (data) {
                            if (data.d.Table.rows)
                                response($.map(data.d.Table.rows, function (item) {
                                    return {
                                        label: item.ItemNumber + " " + item.ObjectName,
                                        value: item.ItemNumber
                                    }
                                }));
                        }
                    });
                },
                minLength: 1,
                select: function (event, ui) {
                    $(c).attr("title", ui.item.label);
                }
            });


 类似资料:

相关阅读

相关文章

相关问答