我无法使用您提供的链接查看源代码。我假设问题有点像我在下面提到的并提供解决方案。
你可以使用 jquery 为你做这件事。
html:
<form id="myForm">
<input name="samefield1"/>
<input name="samefield2"/>
<input name="samefield3"/>
<input name="samefield4"/>
<input type="button" id="btn_dload" value="Download">
<input type="button" id="btn_try" value="Try Now">
</form>
jQuery代码:
$(function(){
$("#btn_dload").click(function(){
var data $("#myForm").serialize(); // this will serialize form data like
// samefield1=value1&samefield2 = value2;
$.ajax({
data: data,
url: 'the download form submission url',
type: 'post',
success: yourcallback();
});
});
$("#btn_try").click(function(){
var data $("#myForm").serialize(); // this will serialize form data like
// samefield1=value1&samefield2 = value2;
$.ajax({
data: data,
type: 'post',
url: 'the try now form submission url',
success: yourcallback();
});
});
});