easyui提交表格但没有返回数据

时间:2015-05-05 13:01:10

标签: php return-value jeasyui

我想用easyui提交表单并测试它是否有效。当我尝试时,没有返回任何数据。下面列出的是我的HTML。 php文件中只有一行代码loginvalidate.php

echo hello world 

为什么没有返回数据?警报只是没有出现。

<div class="easyui-panel" title="LOGIN" style="width:400px;padding:30px 70px 20px 70px">
<form  method="post" id="loginform" name="loginform">

    <div style="margin-bottom:20px">
    <input type="submit" id="submit" name="submit"/>
        <input type="text" class="easyui-textbox" value="<?php if(isset($_COOKIE['username'])) echo $_COOKIE['username']; ?>" name="username" style="width:100%;height:30px;padding:12px" data-options="iconCls:'icon-man',iconWidth:38,prompt:'username'" />
    </div>
    <div style="margin-bottom:20px">
        <input type="text" class="easyui-textbox" value="<?php if(isset($_COOKIE['password'])) echo $_COOKIE['password']; ?>" name="password" style="width:100%;height:30px;padding:12px" data-options="iconCls:'icon-lock',iconWidth:38,prompt:'password'" />
    </div>
    <div style="margin-bottom:20px">
        <input type="checkbox" name="remMe" <?php if(isset($_COOKIE['username'])){echo "checked='checked'"; } ?>>
        <span>Rember Me</span>
    </div>

    </form>  
    <div>
        <a href="javascript:void(0)" name="atag" id="atag" class="easyui-linkbutton" onclick="$('#loginform').submit();" style="padding:5px 0;width:100%" data-options="iconCls:'icon-ok',iconAlign:'left'">
            <span font-size=10px>login</span>
        </a>

    </div>
</div>
<script type="text/javascript">
    $(function(){
        $('#loginform').form(
        {
            url:'loginvalidate.php',
            success:function(data){
                if(data)//check if data returned
                {
                alert('yes');
                }}
            }
        )
        })
</script>

1 个答案:

答案 0 :(得分:0)

好的,经过多次努力,我解决了这个问题。解决方案是更改内部属性id和名称的值不提交。那可行。不知道为什么。