我在用于qlink的qtip插件下面编写了这段代码:

    $(document).ready(function() {
        $('#login').qtip({
            content: '<table><tr><td>Username</td><td><INPUT type="text" value=""   name="username" title="Enter Username" class="txtbx"/></td>' +
            '<td>Password</td><td><INPUT type="password" value="" name="password" title="Enter password" class="txtbx"/></td>' +
            '<td><button id="loginbtn" type="submit" >login</button></td></tr></table>',
            show: { when: { event: 'click' },
                effect: { type: 'fade', length: 200 }
            },
            hide: { when: { event: 'unfocus' },
                effect: { type: 'fade', length: 430 }
            },
            position: {
            adjust: { resize: true

        },
                corner: {
                    target: 'bottomLeft',
                    tooltip: 'topLeft'
                }
            },
            style: {
                name: 'dark',
                width: { max: 700 }
            }
        });
     });


但是提交按钮不起作用!!!! ???任何帮助在这里!

最佳答案

是否将<button id="loginbtn" type="submit" >login</button>替换为

<input name="loginbtn" id="loginbtn" type="submit" value="login" />


工作?

另外,我在任何地方都没有看到form element带有包含包装所有表单输入的操作或方法属性的内容。因此,我认为您提交表单时浏览器不知道该怎么办。

10-07 17:39