比较不错的JS/JQuery显示或隐藏文本的方法
程序员文章站
2023-11-01 16:12:52
比较不错的js/jquery显示或隐藏文本代码如下:
$("#id").show();
$("#id").hide();
不推...
比较不错的js/jquery显示或隐藏文本代码如下:
$("#id").show();
$("#id").hide();
不推荐使用:
. 代码如下:
document.getelementbyid(“#id”).style.display = 'none';
document.getelementbyid("#id"').style.display = 'block';
因为使用设置.style.display在不用的切换存在错行的问题;
上一篇: 禁忌!吃药时这些食物不能吃
推荐阅读