我想将 Botdetect Captcha 添加到我的 html 文件中。但是在 Botdetect 验证码的网站中,只有 jsp 的示例。在这个 jsp 文件中,<taglib>
是这样使用的:
<%@taglib prefix="botDetect" uri="https://captcha.com/java/jsp"%>
....
<botDetect:captcha id="basicExample" userInputID="captchaCode" />
<div class="validationDiv">
<input name="captchaCode" type="text" id="captchaCode" value="${basicExample.captchaCode}" />
<input type="submit" name="validateCaptchaButton" value="Validate" id="validateCaptchaButton" />
<span class="correct">${basicExample.captchaCorrect}</span>
<span class="incorrect">${basicExample.captchaIncorrect}</span>
</div>
HTML文件中是否有任何替代方法<%@taglib>
。我怎么解决这个问题?