使用 jquery、javascript 或 PHP 生成查询字符串
我有一个用户可以填写的表格,我需要用户能够使用查询字符串生成带有结果的 pdf 示例
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
</head>
<body>
<form id="form">
<select name="test" id="test">
<option id="op1" value="1">1234</option>
<option id="op2" value="2">2134</option>
</select>
</form>
<a href="url.pdf?Name=[FillStringHere]"> click here</a>
</body>
谢谢!
i have a form that users can fill out and i need the users to be able to generate a pdf with their results using query string
example
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
</head>
<body>
<form id="form">
<select name="test" id="test">
<option id="op1" value="1">1234</option>
<option id="op2" value="2">2134</option>
</select>
</form>
<a href="url.pdf?Name=[FillStringHere]"> click here</a>
</body>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTML:
jQuery
示例:
http://jsfiddle.net/NeL5X/
HTML:
jQuery
Example:
http://jsfiddle.net/NeL5X/
这将获取值 opt1 和 opt2 并将其作为 opt1=x&opt2=y 放入 url 中。
This will take the values opt1 and opt2 and put it in the url as opt1=x&opt2=y.