dougutuo9879 2016-10-07 03:46
浏览 32
已采纳

PHP AJAX - <input>元素可以像<form>一样具有“action”吗?

Forms have an action attribute to specify where (for example a .php file) to post to. Do <input> elements have the action attribute?

  1. The answer is most likely no. But I wish to know what concept am I getting wrong here?
  2. Is there a equivalent of action for <input>?
  3. The reason I am asking this is that I have a few checkboxes, and I wish to use AJAX to fire something to a PHP file, such that a div changes when the checkboxes are ticked (I don't want a whole page reload). How should I go about doing this?

I am still drafting the code at this stage, but an example can be seen here.

Appreciate your suggestions!

  • 写回答

3条回答 默认 最新

  • duanhong8839 2016-10-07 04:06
    关注

    Based on comments it really sounds like you want something to be sent when any number of checkboxes might be changed.

    Add an event handler to all of them, serialize() the form and post it whenever any one of them changes

    var $form =$('#myForm'); 
    $form.find(':checkbox').change(function(){
         var formData = $form.serialize();
         $.post('/someFile.php', formData, function(response){
             // do something with response
         }).fail(function(){
             alert("Oops something bad happened');
         });
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应