0

私のボタン:

<button onclick="return DeleteImg(this,event);">Delete</button>

私のコード:

function DeleteImg(Obj,e) {
    if (!confirm('Are you sure you want to delete the file?')) return false;
    var n = new PostData('/Pictures/Delete/', 'Type=Home&Name=' + window.LargeImage.src.split('/')[5]);
    n.onResponse = function (t) {
        var n = JSON.parse(t);
        if (n.Success) ShowMsg('Image Deleted, it will be gone when you refresh.');
        else ShowMsg(n.Msg);
    };
    e.preventDefault();
    return false;
}

投稿データ機能:

function PostData(e, t) {
    var n = false;
    this.onResponse = function (e) {};
    if (window.XMLHttpRequest) n = new XMLHttpRequest;
    else if (window.ActiveXObject) n = new ActiveXObject('Microsoft.XMLHTTP');
    else {
        this.onResponse(JSON.stringify({
            Success: false,
            Msg: 'Your browser does not support AJAX, please upgrade to Google Chrome, Mozzila Firefox or Internet Explorer 10',
            ElementId: undefined
        }))
    }
    n.open('POST', e, true);
    n.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    var r = this;
    n.onreadystatechange = function () {
        if (n.readyState == 4 && n.status == 200) r.onResponse(n.responseText)
    };
    n.send(t)
}

ボタンがクリックされ、ユーザーが確認ボックスで [OK] をクリックするたびに、ページは別のページにリダイレクトされます (何もわからない、私の FCP はそれをページが見つからないので存在しないページにリダイレクトするだけです)。コードは実行されません。 .

これを修正するにはどうすればよいですか?

4

1 に答える 1

4

デフォルトでは、ボタンはsubmitページをリダイレクトするボタンです。ボタンの種類を設定することで修正できます。

<button type="button" onclick="return DeleteImg(this,event);">Delete</button>
于 2013-10-08T15:31:11.813 に答える