简体   繁体   English

未捕获的 ReferenceError:在 HTMLButtonElement.onclick 中未定义 postAcmgForm

[英]Uncaught ReferenceError: postAcmgForm is not defined at HTMLButtonElement.onclick

I'm creating a form, however, when I try to submit the form using onclick event, I get the following error Uncaught ReferenceError: postAcmgForm is not defined at HTMLButtonElement.onclick我正在创建一个表单,但是,当我尝试使用 onclick 事件提交表单时,出现以下错误Uncaught ReferenceError: postAcmgForm is not defined at HTMLButtonElement.onclick

I did try including the tag inside the <head> tag and before the </body> tag and still, it doesn't work.我确实尝试在<head>标签内和</body>标签之前包含该标签,但仍然不起作用。 The path mentioned in the src element is correct. src 元素中提到的路径是正确的。

Following is the code以下是代码

<html>
<head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
    <style>
        .inline-div {
            float: left;
        }
    </style>
    <script language="JavaScript" type="text/javascript" src="../controller/formcontroller.js" /></script>
</head>
<body>
<div class="container-fluid">

    <div id="leftDiv" class="inline-div col-md-3">
        <head>
            <meta name="viewport" content="width=device-width, initial-scale=1">
        </head>

        <form action="../controller/acmg_controller.php"  method="POST" target="_blank">
        <!--<form method="POST">-->
            <div class="form-group">
                PMID: 
                <input type="text" class="form-control form-control-sm" id="pmid" name="pmid">
            </div>
            <div class="form-group">
                ACMG Category:
                <select class="form-control form-control-sm" id="ACMG" name="ACMG">
                    <option value="FUNCTIONAL STUDY | 9">Functional Studies</option>
                    <option value="ALLELIC | 10">Patients / Allelic data</option>
                    <option value="CO-SEGREGATION | 11" option="11">Disease co-segregation</option>
                    <option value="DE NOVO | 12" option="12">De novo mutation</option>
                    <option value="CASE CONTROL | 13" option="13">Case-control studies</option>
                    <option value="PHENOTYPE | 14" option="14">Phenotype/family history</option>
                </select>
            </div>
            <div class="form-group">
                Evidence Supports:
                <select class="form-control form-control-sm" id="Evidence" name="Evidence">
                    <option value="Supports Benignnes">Supports Benignness</option>
                    <option value="Supports Pathogenic">Supports Pathogenic</option>
                </select>
            </div>
            <div class="form-group">
                <label for="summary">Summary:</label>
                <textarea class="form-control" id="text" name="text" rows="8"></textarea>
            </div>
            <div class="form-group">
                <input type = "hidden" name = "genevar" id = "genevar">
                <script>
                    var hashParams = window.location.hash.substr(1).split('&');
                    var temvarient = hashParams[1].split('=');
                    var variant = temvarient[1];
                    var hashParams_ = window.location.hash.substr(1).split('&');
                    var temgene = hashParams_[0].split('=');
                    var gene = temgene[1];
                    //document.write(gene+' '+variant);
                    document.getElementById('genevar').value = gene + ' ' + variant;
                </script>
            </div>
            <div class="form-group">

                <input type = "hidden" name = "mutation" id = "mutation" >
                <script>
                    var hashParams = window.location.hash.substr(3).split('&');
                    var mutation = hashParams[2].split('=');
                    var mutationtype = mutation[1];
                    document.getElementById('mutation').value = mutationtype;
                </script>
            </div>
            <div class="form-group">
                <input type = "hidden" name = "vkey" id = "pvkey" >
                <script>
                    var hashParams = window.location.hash.substr(0).split('&');
                    var temVkey = hashParams[3].split('=');
                    var vkey = temVkey[1];
                    document.getElementById('pvkey').value = vkey;
                </script>
            </div>
            <div class="form-group">
                </script>
                <input type = "hidden" name = "genevar"id = "genevar" >
                <script>
                    var hashParams = window.location.hash.substr(3).split('&');
                    var mutation = hashParams[2].split('=');
                    var mutationtype = mutation[1];
                    document.getElementById('mutation').value = mutationtype;
                </script>
            </div>

            <button type="submit" class="btn btn-primary" onclick="postAcmgForm(this,event);" name="submit">Submit</button>

        </form> 

    </div>

    <div id="rightDiv" class="inline-div col-md-9">
        <div id="pdfview">
            <iframe id="pdfv"
                    src="...."
                    height="750px" width="100%">

            </iframe>
        </div>
    </div>

</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>

</body>

</html>

The JavaScript code in '/controller/formcontroller.js' is '/controller/formcontroller.js' 中的 JavaScript 代码是

function postAcmgForm(id,e){
    var ACMG = $("#ACMG").val();
    alert(ACMG);
    $.ajax({
                type : 'POST',
                url : '../controller/acmg_controller.php',
                dataType : 'json',
                data: {
                    ACMG:ACMG
                },
                success : function(data){
                $.each( data, function( key, value ){
                    $("#"+key).html(value));
                    alert(key + ":" +value);

                });

                },
                error : function(XMLHttpRequest, textStatus, errorThrown) {

                    console.log("parse error for searchString");

                }
            });
}







The code in 'acmg_controller.php' is: 'acmg_controller.php' 中的代码是:

<?php

date_default_timezone_set("America/New_York");
$date= date('Y-m-d');

$result = $_POST['ACMG'];
$result_explode = explode('|', $result);
$data_array = array('ACMG Category' => $result_explode[0],
                    'ACMG ID' => $result_explode[1], 
                    'Evidence Support' => $_POST["Evidence"], 
                    'Summary' => $_POST["text"], 
                    'Source' => 'PubMed',                   
                    'Date'=> $date, 
                    'Source ID' => $_POST["pmid"],
                    'Vkey' => $_POST["vkey"], 
                    'Gene Variant' => $_POST["genevar"],
                    'Mutation Type' => $_POST["mutation"]                   );

Get rid of the language="JavaScript" and don't replace it with anything.去掉language="JavaScript"并且不要用任何东西替换它。 Your code looks good otherwise but the language attribute was never implemented in a standard way and was then deprecated.否则您的代码看起来不错,但language属性从未以标准方式实现,然后被弃用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 未捕获的ReferenceError :(函数)未在HTMLButtonElement.onclick中定义 - Uncaught ReferenceError: (function) not defined at HTMLButtonElement.onclick 未捕获的ReferenceError:未在HTMLButtonElement.onclick中定义查找 - Uncaught ReferenceError: lookup is not defined at HTMLButtonElement.onclick 未捕获的 ReferenceError:showCurrentPage 未在 HTMLButtonElement.onclick 中定义 - Uncaught ReferenceError: showCurrentPage is not defined at HTMLButtonElement.onclick 未捕获的ReferenceError:HTMLButtonElement.onclick中未定义submitToAPI - Uncaught ReferenceError: submitToAPI is not defined at HTMLButtonElement.onclick 未捕获的 ReferenceError:id 未在 HTMLButtonElement.onclick 中定义 - Uncaught ReferenceError: id is not defined at HTMLButtonElement.onclick Uncaught ReferenceError: (function) is not defined at HTMLButtonElement.onclick - Uncaught ReferenceError: (function) is not defined at HTMLButtonElement.onclick 未捕获的ReferenceError:在HTMLButtonElement.onclick中未定义函数 - Uncaught ReferenceError: function is not defined at HTMLButtonElement.onclick 未捕获的ReferenceError:未在HTMLButtonElement.onclick上定义toggleFunction - Uncaught ReferenceError: toggleFunction is not defined at HTMLButtonElement.onclick 未捕获的ReferenceError:未在HTMLButtonElement.onclick上定义测试 - Uncaught ReferenceError: testing is not defined at HTMLButtonElement.onclick 未捕获的 ReferenceError:异步未在 HTMLButtonElement.onclick 中定义 - Uncaught ReferenceError: async is not defined at HTMLButtonElement.onclick
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM