//展开
function showinfo()
{

document.getElementById("hidden1").removeAttribute('style');
document.getElementById("show1").removeAttribute('style');
document.getElementById("hidden1").setAttribute('style','cursor: pointer; display: none;');
document.getElementById("show1").setAttribute('style','cursor: pointer; display: inline-block;');

}

//隐藏
function hideInfo()
{
document.getElementById("hidden1").removeAttribute('style');
document.getElementById("show1").removeAttribute('style');
document.getElementById("hidden1").setAttribute('style','cursor: pointer; display: inline-block;');
document.getElementById("show1").setAttribute('style','cursor: pointer; display: none;');

}

相关文章:

  • 2022-02-09
  • 2022-02-09
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
  • 2022-02-07
  • 2021-12-27
  • 2022-12-23
猜你喜欢
  • 2021-09-12
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2021-10-14
  • 2022-01-30
相关资源
相似解决方案