0

独占的な音楽リリースを大手 DJ/ラジオなどに送りたいページがあります。

主な機能は次のとおりです。

彼らは音楽についてのフィードバックを残す必要があり、トラックをダウンロードすることができます!

答えを得るためにたくさんのサイトを調べましたが、役立つヒントは見つかりませんでした!

ajaxによる投稿は次のとおりです。

  <script>
$(document).ready(function(){
    $('#submit').click(function() {
        $.ajax({ 
            type: "POST",
            url: "send.php",
            data: $("#feedbackpanel").serialize(),
            success: function(data){
                       $("#download-button").removeAttr('disabled');            
            }
        }); 
    });
    return false; 
});
</script>

フォームは次のとおりです。

<form id="feedbackpanel">
<br/>
    Artist/Producer Name:<br/><br/> <input type="text" name="name" pattern=".{3,}" placeholder="Let us know who you are! :)"  style="width:150px" title="Thats your name? :)" onFocus="if(!this._haschanged){this.value=''};this._haschanged=true;"  /><br/><br/>

    Leave your feedback here: <br/> <br/>
    <input title="Please 10 character at least!" type="text" name="feedback"  pattern=".{10,}"  placeholder="At least 10 character..."  onFocus="if(!this._haschanged){this.value=''};this._haschanged=true;"  style="height: 50px; width:300px"/><br/><br/>

<input type="submit" id="submit" name="submit" value="Submit" style="font-size: 14px; color: white; border:1px solid transparent" />

<input type="button" id="download-button" value="download" onclick="location.href='filedestination/filename.zip';"  disabled="disabled" />

</form>

問題は何ですか?

私を助けてください!

ありがとう!

4

1 に答える 1