嗨, 我想知道在wordpress中添加” readonly”属性到输入标签和” disable”以选择标签的php代码是什么?我是wordpress的新手。\
<select name="gdlr-night" id="gdlr-night" readonly> </select>
<input disable>
#1
在PHP中使用
<input type="text" <?php echo "readonly";?> />
但是, 我认为你需要使用javascript来做到这一点?按下按钮时设置为只读?
jQuery代码:
$('.button1').click(function(){
$(this).prop('disabled', true);//recommend
//$(this).attr('disabled', 'disabled'); not recommend
//ajax checking
});
#2
有一个简单的解决方案
<input type="text" name="" value="Some text" <?php echo 'readonly'; ?>> <!-- for input -->
<select class="" name="" <?php echo 'disabled'; ?>> <!-- for select -->
</select>
评论前必须登录!
注册