使用 JavaScript 選中一個複選框
假設以下內容是我們的輸入型別複選框 -
<lable>John</lable> <input id="checkedValue1" type="checkbox"> <lable>David</lable> <input id="checkedValue2" type="checkbox">
我們要選中其中任何一個複選框。使用 checked 屬性來選中複選框。
示例
以下是程式碼 -
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> <lable>John</lable> <input id="checkedValue1" type="checkbox"> <lable>David</lable> <input id="checkedValue2" type="checkbox"> </body> <script> document.querySelector('#checkedValue2').checked = true </script> </html>
要執行上述程式,請將檔案另存為 anyName.html(index.html)。右鍵單擊該檔案,然後在 VS Code 編輯器中選擇選項“使用即時伺服器開啟” -
輸出
輸出如下 -
廣告