Example 1: jquery set attribute readonly // jQuery < 1.9 $('#id').attr('readonly', true); // jQuery >= 1.9 $('#id').prop('readonly', true); Example 2: add ...
確定! 回上一頁