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

从链接运行脚本

从链接运行脚本

PHP
肥皂起泡泡 2022-06-17 10:45:08
我有以下脚本在 div 中显示我的信息,它工作得很好,但有一个按钮......我试图让它从一个链接走,我尝试了很多方法,但没有,有什么想法吗?<script>function showCustomer(str) {  var xhttp;      if (str == "") {    document.getElementById("contenido").innerHTML = "";    return;  }  xhttp = new XMLHttpRequest();  xhttp.onreadystatechange = function() {    if (this.readyState == 4 && this.status == 200) {      document.getElementById("contenido").innerHTML = this.responseText;    }  };  xhttp.open("GET", "getcustomer.php?q="+str, true);  history.pushState(null, "", str+ ".xhttp");  xhttp.send();}</script><input type='button' value='6df67913c1' onclick='showCustomer(this.value);' />
查看完整描述

3 回答

?
POPMUISE

TA贡献1765条经验 获得超5个赞

你必须做这样的事情


const myLinkButton = document.getElementById('my-Link-button')

  ;

myLinkButton.onclick=e=>

  { 

  e.preventDefault()  // -> disable link action for new url

  console.log( myLinkButton.dataset.value )

  }

<a href="#" data-value="6df67913c1" id="my-Link-button" >button by link</a>


查看完整回答
反对 回复 2022-06-17
?
qq_笑_17

TA贡献1818条经验 获得超7个赞

利用<a href="JavaScript: void (0)" onclick="callYourFunction()>link<\a>



查看完整回答
反对 回复 2022-06-17
?
慕妹3146593

TA贡献1820条经验 获得超9个赞

你可以这样做。


    <script>

        function showCustomer(element) {

          const str = element.getAttribute('data-value')

          var xhttp;    

          if (str == "") {

            document.getElementById("contenido").innerHTML = "";

            return;

          }

          xhttp = new XMLHttpRequest();

          xhttp.onreadystatechange = function() {

            if (this.readyState == 4 && this.status == 200) {

              document.getElementById("contenido").innerHTML = this.responseText;

            }

          };

          xhttp.open("GET", "getcustomer.php?q="+str, true);

          history.pushState(null, "", str+ ".xhttp");

          xhttp.send();

        }

    </script>

    <a href="#" onclick="showCustomer(this)" data-value="6df67913c1">Same, from link</a>



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

添加回答

举报

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