檢測
$('#checkboxId').is(':checked')
for verify if is checked
設定
$("#checkboxId").prop('checked', true)
to check$("#checkboxId").prop('checked', false)
to uncheck$('#checkboxId').is(':checked')
for verify if is checked$("#checkboxId").prop('checked', true)
to check$("#checkboxId").prop('checked', false)
to uncheck以 Java 開發專案, 在 DAO 寫入資料庫時, 常遇到JAVA 字串與資料庫編碼不一致, 有時會產生字串過長,導致無法寫入資料庫的情況. 這時就要在入庫前, 先驗證 JAVA 編碼字串是否超出資料庫欄位長度 JAVA 依 不同編碼, 其長度是不一樣的 如: ...