我想要做的是,如果用户选择“bycrypt”,它应该显示一个字段来询问多少次通过,如果他/她选择“sha512”来显示相同的字段,但被禁用。建议我使用 Jquery 执行此操作,但我的尝试不起作用。我的代码如下:
<fieldset>
<legend>Security</legend>
<label>Hash Type</label>
<select name="hash" id="myId">
<option value="bcrypt"<?php if($hash == 'bcrypt') { echo ' selected="selected"'; } ?>>Bcrypt</option>
<option value="sha512"<?php if($hash == 'sha512') { echo ' selected="selected"'; } ?>>SHA512</option>
</select>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js" /></script>
<label>Bcrypt rounds <i>(12 Rounds is recommended)</i></label>
<script type="text/javascript>
$("#myId").change(function() {
var tst = document.getElementById('myId').value;
if (tst ==1) {
document.getElementById('#bcrypt_rounds').disabled=true;
} else {
document.getElementById('#bcrypt_rounds').disabled=false;
}
});
</script>
<input name="bcrypt_rounds" id="bcrypt_rounds" type="text" value="<?php echo $bcrypt_rounds; ? >" />
以上更新。现在在“bycrpt_rounds”标签之后切断页面。没有到达“bycrypt_rounds”的字段。