こんにちは、私はajaxFormプラグインを使い始め、次のようなフォームステートメントを使用しました。
<form id="upload" action="upload.php" methor="POST">
<!-- form inputs etc etc -->
</form>
すべて正常に動作していますが、アクションパラメータを「upload.php」から「upload.php?some_param = value」に変更しようとすると、upload.phpだけが呼び出されます。誰かが、ajaxFormで別のパラメータを送信する方法について何か考えがありますか?
私は以下を調べました:
<script type="text/javascript">
$('#upload').live('change',function() {
$(this).ajaxForm({
success: somefunction, // callback function
//i guess here should be another parameter to be sent to the file, but I couldn't find anything interesting on the web
});
});
</script>