私はこのHTMLを使用しています:
<tr>
<td class="smalltext" width="100%">
<label>
<input type="checkbox" value="1" name="guarantee" id="guarantee_check_tick" />
— Tick this checkbox if you are going to give 100% satisfaction guarantee.
</label>
</td>
</tr>
およびjQuery:
jQuery(document).ready(function($)
{
$("#guarantee_check_tick").click(function()
{
var $this = $(this);
if ($this.is(":checked"))
{
confirm('Are you sure you are going to provide 100% satisfaction guarantee?');
}
});
});
ユーザーがチェックボックスをクリックすると、確認が表示され(これは問題ありません)、ユーザーが「キャンセル」ボタンをクリックすると(確認プロンプトで)、ユーザーが「OK」ボタンをクリックするとチェックボックスがオンになります。チェックボックスはオフのままにする必要があります。どうすればこれを達成できますか?
助けてください!