0

I am having problem with qtip content button. When i try to change a text's readonly property to, it change the property by it is still writeabl. and same problem when i am trying to display a div using on click.

Here is JSfiddle link to the problem....

4

1 回答 1

0

Qtip 为 Tooltip 克隆您的 html,然后在何时显示它,这意味着您的 id 不会总是唯一的。

而是使用类

 $(document).on("click",'.poster', function() {
        $('.lookup').attr('readOnly', true);     
    });

单击 go 按钮时将禁用文本字段

更新的小提琴

于 2012-07-03T12:03:14.310 回答