雷鸣表单辅助 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
雷鸣表单辅助 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
雷鸣表单辅助 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 Apache-2.0
开发语言 JavaScript HTML/CSS
操作系统 跨平台
软件类型 开源软件
开源组织
地区 国产
投 递 者 鬼画符
适用人群 未知
收录时间 2023-09-14

软件简介

针对html的form表单提交,自动获取要提交的输入数据、自动根据接口返回信息进行填充输入项。

快速体验

http://res.zvo.cn/from.js/demo.html
(进入后查看源代码,即可看到它的demo实现)

使用说明

首先,网页中要引入一个js

<script src="http://res.zvo.cn/from.js/from.js"></script>

比如这个html代码

<script src="http://res.zvo.cn/from.js/from.js"></script>

<div id="from_id">
	选择:
	<select name="storage">
		<option value="1">本地存储</option>
		<option value="2">SFTP存储</option>
	</select>
	<br/>
	username:<input type="text" name="username" value="222" /><br/>
	password:<input type="text" name="password" value="333" /><br/>
	info:<textarea name="info"></textarea>
</div>
	

自动获取要提交的输入数据

根据指定的id,搜索这个id范围内,出现的 input、textarea、select 等标签,并取出其内容,变为可以进行ajax提交的格式。
代码示例:

<button onclick="getJsonData();">获取表单数据</button>
<script>
function getJsonData(){
	var data = from.getJsonData('from_id');
	console.log('自动获得的输入数据:');
	console.log(data);
	
	//弹出窗口看下数据
	alert(JSON.stringify(data, null, 4));
}
</script>

自动根据接口返回信息进行填充输入项

根据指定的id,搜索这个id范围内,出现的 input、textarea、select 等标签,并取出其内容,变为可以进行ajax提交的格式。
代码示例:

<button onclick="fill();">自动填充表单</button>
<script>
function fill(){
	var data = {
			'storage':'2',
			'username':'管雷鸣',
			'password':'123',
			'info':'hello word'
	};
	from.fill('from_id',data);
}
</script>
展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击引领话题📣 发布并加入讨论🔥
暂无内容
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
0 评论
3 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部