为了账号安全,请及时绑定邮箱和手机立即绑定

单击功能仅适用于第二次单击

单击功能仅适用于第二次单击

PHP
米脂 2022-06-17 16:53:49
Wordpress/Woocommerce在构建中有以下代码。问题是该按钮仅在第二次单击时有效。需要这个在第一次点击时工作,我的代码有什么问题?// Add button to hide Personalisationadd_action('woocommerce_single_product_summary', 'custom_text', 29);function custom_text() {    print '<button class="personlisation-button" onclick="myFunction()">Add Personalisation</button>';  }  // Script to toggle visibility<script type="text/javascript">  function myFunction() {    var x = document.getElementById("wcj_product_addons");    if (x.style.display === "none") {      x.style.display = "block";    } else {      x.style.display = "none";    }  }</script>
查看完整描述

1 回答

?
料青山看我应如是

TA贡献1772条经验 获得超8个赞

最好添加一个检查null。您可能在页面上没有这样的元素。


function myFunction() {

  var x = document.getElementById("demo");

  if (x != null && x.style.display === "none") {

    x.style.display = "block";

  } else {

    x.style.display = "none";

  }

}

<button

  onclick="myFunction()"

>

  Toggle</button

>


<div id="demo">Hello world</div>


查看完整回答
反对 回复 2022-06-17
  • 1 回答
  • 0 关注
  • 88 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信