0

如果单击其他内容,则最后一个输入(被单击)应该是 readonly -> true 再次。

这是我的代码:

<script>
  $(document).ready(function() {

   $("input").prop("readonly", true);      

   $("input").click(function() { 
        $(this).prop("readonly", false); 
    });

  });
</script>

谢谢!

4

3 回答 3

1

尝试这个

--to make input editable on click
    $('input').bind('click', function () {
        $(this).prop("readonly", false);
    });

--to make input readonly on lost focus
    $('input').bind('blur', function () {
        $(this).prop("readonly", true);  
    });
于 2013-08-28T11:29:04.783 回答
0
$("input").click(function() {
    var $that = $(this);
    $("input").each(function() {
       if ($(this) !== $that) {
          $(this).prop("readonly", false);
       }
    });    
});
于 2013-08-28T11:04:58.180 回答
0

尝试

$("input").attr("readonly", "readonly");
于 2013-08-28T11:05:38.347 回答