0

私はhtmlページでajaxを使用してMySql dbからデータをロードし、リロードして何らかのイベントで電子メール通知を送信します。同時に、クエリが実行されるまでajaxローダーの画像を表示および非表示にする関数を使用しますが、phpスクリプトを2回呼び出して、メールを2回送信するたびに

<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.js"></script>

<script>
function showUser(str)
{
    if (str=="")
    {
        document.getElementById("txtHint").innerHTML="";
        return;
    }
    if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else
    {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange=function()
    {
        if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
            document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET","../getuser.php?q="+str,true);
    xmlhttp.send();
}

// ajax loader image

function getuser(str){
    $.ajax({
        url: "http://site.com/getuser.php?q="+str,
        beforeSend: function (XMLHttpRequest)
        {
            $("#loading").show();
        }
    })
    .done(function ( data ) {
        $("#txtHint").html(data);
        $("#loading").hide();
    });
}
$(document).ready(function(){
    $("select[name='users']").change(function () {
        getuser($("option:selected", this).val());
    });
});
</script>

phpスクリプトを1回だけ呼び出すようにこのコードを改善するにはどうすればよいですか?

HTML

<form>
    <select name="users" onchange="showUser(this.value)"> 
        <option value="">Select a user:</option>
        <option value="1">User1</option>
        <option value="2">User2</option>
    </select>
</form>
<div style="display:none" id="loading">
    <p><img src="../loader.gif" /></p>
</div>
<br>
<div id="txtHint"><b>User info will be listed here.</b></div>
4

2 に答える 2

1

onchangeイベントを以下から削除します。

<select name="users" onchange="showUser(this.value)"> 
于 2013-02-18T13:21:49.463 に答える
0

何に使うshowUserの?これで十分のようです。

function getuser(str) {
  $.ajax({
    url: "/getuser.php?q=" + str, // No need to include the domain here
    beforeSend: function (jqXHR) {
       $("#loading").show();
    }
  }).done(function(data) {
    $("#txtHint").html(data);
    $("#loading").hide();
  });
}

$(document).ready(function() {
  $("select[name='users']").change(function() {
    getuser($(this).val());
  });
});
于 2013-02-18T13:20:59.407 に答える