douzhu3654 2013-02-18 19:40
浏览 29
已采纳

Ajax形式:后备造型

I have an Ajax form. Now I want to supply a solid fallback if the user has JavaScript deactivated.

So far it works also without JavaScript, but the user then simply sees the JSON string as a result printed on blank white without styling because of

echo json_encode( $arr );

How do I add styling to this? Do I have to echo a whole HTML page? Is it possible to enable a redirect for JS disabled or something?

The whole PHP bit looks like this:

if ( !empty( $invalidFieldArray ) ) {     
    // validation errors
    $arr = array( "status" => "error" , "data" => $invalidFieldArray );
    echo json_encode( $arr );      
} else {
    // all ok
    $arr = array( "status" => "success" );
    echo json_encode( $arr );
}
  • 写回答

2条回答 默认 最新

  • douying7289 2013-02-18 19:52
    关注

    HTML and AJAX

    You could use a different action URL in your <form> than the one used by AJAX. That way, you can have a normal working <form> fallback which outputs HTML.

    X-Requested-With

    Or, if you want to use only one URL for both methods, then you can have a look at the X-Requested-With header sent, and identify an AJAX request by checking it against the value XMLHttpRequest.

    if(strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
      /* It's AJAX */
    } else {
      /* HTML fallback */
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!