Начало
Формы
Текст Checkbox
(Internet Explorer Только), пользователь больше не должен щелкнуть точно на checkbox, чтобы проверить и непроверить это. Щелкая текстом после того, как checkbox может сделать это точно так же как программы окон.
Clicking this text also checks the box to the left.
JavaScript Forms: Текст Checkbox
<!-- TWO STEPS TO INSTALL CHECKBOX TEXT: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function changeBox(cbox) { box = eval(cbox); box.checked = !box.checked; } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center> <form name=demoform> <input type=checkbox name=agreebox> <span id="hellospan" style="cursor:hand;" onClick="changeBox('document.demoform.agreebox')">Clicking this text also checks the box to the left.</span> </form> </center> <!-- Script Size: 0.97 KB -->