jQuery提交表单,其中包含点击事件和新操作

前端之家收集整理的这篇文章主要介绍了jQuery提交表单,其中包含点击事件和新操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这样的表格
<form name="test" action="test/test_new" />
<input type="text" />
<input type="submit" value="search"/>
<input type="button" value="download"/>

我甚至需要点击下载按钮.例如.如果我点击下载它应该提交text / text_new.xls而不是text / text_new.我该怎么做.

解决方法

给id按钮并尝试这个
$('#downloadButton').click(function(){
  $('form[name=test]').attr('action','test/test_new.xls');
  $('form[name=test]').submit();
});
原文链接:https://www.f2er.com/jquery/178985.html

猜你在找的jQuery相关文章