1. ホーム
  2. jquery

[解決済み] jquery get post action url

2023-06-13 13:17:25

質問

jqueryの関数でpost target actionにアクセスしようとしています。

の例です。

<form action="/page/users" id="signup" method="post">

action"の部分、この場合は "/page/users"にアクセスしたいのですが。

$('#signup').live("submit", function(event) {
    // get this submitted action
}

私は非常に単純な何かを見逃しているように思えます。私はdomで値を見ますが、それがjqueryのどこに格納されているのかわかりません。

ありがとうございます!

どのように解決するのですか?

$('#signup').on("submit", function(event) {
    $form = $(this); //wrap this in jQuery

    alert('the action is: ' + $form.attr('action'));
});