양식 제출에 공백을 추가한 후 제출된 값이 비어 있는 이유는 무엇입니까?
**推广网
**推广网 2018-09-13 17:57:59
0
2
1179
$txt = $_POST["txt"];  
if(empty($txt)){  
   $data="内容不能为空";
   echo json_encode($data);     
   die;
}

백엔드 코드



<script>

layui.use('layedit', function(){
  var layedit = layui.layedit;
  var ly = layedit.build('txt'); //建立编辑器
  
              $("#add").click(function() {  
                    var txt = layedit.getContent(ly); 
                    $.ajax({  
                        type: "POST",  
                        url: "comment.php",  
                        data:  "txt=" + txt,  
                        success: function(data) {
                            data = JSON.parse(data);
                            if (data.msg == 2) {  
                                $("#message").show().html("发表成功!").fadeOut(1000);  
                                $("#txt").val("");  
                            } else {  
                                $("#message").show().html(data).fadeOut(1000);  
                            }  
                        }  
                    });  
                });  
          
});

프런트엔드 코드

웹사이트: https://t.iaozi.com/ly/

**推广网
**推广网

中国推广网:http://bbs.iaozi.com

모든 응답(1)
Summer

data: "txt=" + txt 이 데이터로 변경: {txt:txt}

  • 회신하다 √ , 감사합니다
    **推广网 작가 2018-09-14 09:00:43
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!