文章图片
嗨, 我想知道在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 【用于在WordPress中向html标签添加属性的PHP代码】有一个简单的解决方案
<
input type="text" name="" value="http://www.srcmini.com/Some text" <
?php echo 'readonly';
?>
>
<
!-- for input -->
<
select class="" name="" <
?php echo 'disabled';
?>
>
<
!-- for select -->
<
/select>
推荐阅读
- PHP-仅在主页上隐藏元素-WordPress网站
- PHP 7.3函数create_function()已过时-[重复]
- 将变量传递到包含中的另一个变量可能吗()
- 视差WordPress主题标签仅在Google Chrome中不起作用
- 主页上的分页WordPress
- 在WordPress中从头开始创建主题子文件夹中的页面模板
- WordPress中带有主题的Oxygen Builder
- Owl轮播-使用上一个/下一个跳过过去的图像
- 在子主题中覆盖父主题函数