我是靠谱客的博主 文艺衬衫,最近开发中收集的这篇文章主要介绍jQuery Form 页面表单提交的小例子,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

<script type="text/javascript" src="${ctx}/js/jquery.form.js"></script> 
<script type="text/javascript"> 
    //创建测试实例 
    function createInstance() { 
        var options = { 
            success : function(json) { 
                if (json.succ) { 
                    alert(json.info); 
                    window.parent.ymPrompt.doHandler("close", true); 
                } 
            } 
        }; 
        $("#f1").ajaxSubmit(options); 
    } 

    //关闭按钮 
    function closeWindow() { 
        window.parent.ymPrompt.doHandler("close", true); 
    } 
</script> 

Form表单:

复制代码 代码如下:

<form id="f1" name="f1" action="${ctx}/process/createInstance.do" 
            method="post"> 
            <table style="width:100%; height:100%"> 
                <tr> 
                    <td nowrap="nowrap" style="text-align:right;">测试名称:</td> 
                    <td><input type="text" name="name" value="${instance.name}" 
                        style="width:265px;" /><em class="em_user_manage">*</em> 
                    </td> 
                </tr> 
                <tr> 
                    <td nowrap="nowrap" style="text-align:right;">测试场景:</td> 
                    <td><input type="text" name="scene" style="width:265px;" 
                        value="${instance.scene}" /><em class="em_user_manage">*</em> 
                    </td> 
                </tr> 
                <tr> 
                    <td nowrap="nowrap" style="text-align:right;">测试目标:</td> 
                    <td><textarea type="text" name="goal" id="goal" cols="32" 
                            rows="7">${instance.goal}</textarea> 
                    </td> 
                </tr> 
                <tr> 
                    <td nowrap="nowrap" style="text-align:right;">测试说明:</td> 
                    <td><textarea type="text" name="description" id="description" 
                            cols="32" rows="7">${instance.description}</textarea> 
                    </td> 
                </tr> 
                <tr> 
                    <td colspan="2" align="center"><input type="hidden" 
                        name="extProcessDefinitionId" 
                        value="${instance.extProcessDefinitionId}" /><input type="hidden" 
                        name="signIn" value="${instance.signIn}" /><input type="hidden" 
                        name="definitionId" value="${instance.definitionId}" /><input 
                        type="button" value="确定" onclick="createInstance();" /><input 
                        type="button" value="取消" onclick="closeWindow();" /></td> 
                </tr> 
            </table> 
        </form> 

最后

以上就是文艺衬衫为你收集整理的jQuery Form 页面表单提交的小例子的全部内容,希望文章能够帮你解决jQuery Form 页面表单提交的小例子所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(101)

评论列表共有 0 条评论

立即
投稿
返回
顶部