0

我之前也发过,但没有得到明确的答案。我对此感到非常困惑:

我有以下html:

<body onload="showcontent()"> <!-- onload optional -->
        <div id="content"><img src="loading.gif"></div> <!-- leave img out if not onload -->
    </body>

我也有以下脚本:

function showcontent(){

  if(window.XMLHttpRequest) {
    xmlhttp = new XMLHttpRequest();
  } else {
    xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
  }

  xmlhttp.onreadystatechange = function() {
    if(xmlhttp.readyState == 1) {
        document.getElementById('content').innerHTML = "<img src='loading.gif' />";
    }
    if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
      document.getElementById('content').innerHTML = xmlhttp.responseText;
    } 
  }

  xmlhttp.open('GET', 'elsevier.php', true);
  xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
  xmlhttp.send(null);

}

在 elsevier.php 中,我希望当表格的行数超过 500 时显示两个按钮,告诉我是继续还是取消。如果我将此代码放在 .php 文件中,则不会发生任何事情.....(除了出现两个按钮)。

if(mysqli_errno($con)==1062){
      @$q55="SELECT COUNT(*) FROM testarticles";
      $result55 = mysqli_query($con, $q55);
      $row = $result55->fetch_row();
      echo '#: ', $row[0].'<br>';

      if($row[0]>=500&&$answer==false){
         echo '<form action="" method="GET">';
         echo "<label>Do you want to continue or cancel?</label>";
         echo '<input type="button" id="but1" name="but1" value="Continue">';
         echo '<input type="button" id="but2" name="but2" value="Cancel">';
         echo '</form>';

         if(isset($_GET["but1"])){
            $answer=true;
             break;
         }
          elseif(isset($_GET["but2"])){
             @$q56="DELETE * FROM journal, volume, issue, articles, testarticles WHERE import_time=$unixtimestamp";
             $result56 = mysqli_query($con, $q56);
             exit;
           }
      }

我希望在这一步中停止执行 php 脚本并向我显示两个可供选择的按钮。如果我按继续,我希望脚本从它停止的地方执行。

有人知道吗??我已经尝试了几件事,但没有任何效果......提前谢谢你!

4

1 回答 1

0

尝试使用input type="submit"而不是input type="button", submit 将(显然)提交表单,按钮只是按钮,当您单击它时,如果您没有将操作与 js 或其他任何内容链接,则不会发生任何事情。

于 2012-09-24T15:51:16.747 回答