带有锚定标记的jQuery提交表单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有锚定标记的jQuery提交表单相关的知识,希望对你有一定的参考价值。

Just a little bit of code if u are interested in using links for form submission. I'm aware of the dangers of using links in this case, but don't really care. They're way easier to style.
  1. $(document).ready( function(){
  2.  
  3. // bind "click" event for links with title="submit"
  4. $("a[title=submit]").click( function(){
  5. // it submits the form it is contained within
  6. $(this).parents("form").submit();
  7. });
  8.  
  9. });

以上是关于带有锚定标记的jQuery提交表单的主要内容,如果未能解决你的问题,请参考以下文章

PHP 使用 jQuery .post() 提交带有多个提交按钮的表单

Jquery滚动到第页的锚定标记

内部带有 jQ​​uery 对话框的表单不提交

JavaScript 提交带有锚标记的表单(链接)

如何使用 jQuery 提交带有部分只读输入的表单?

使用 jQuery 提交表单 [关闭]