form表单
飞鱼计划
加入我qq:2579679536
备注:资源分享
展开
-
弹出框
注:alert弹出消息对话框(包含一个确定按钮)。 语法: alert(字符串或变量); 注意: 1. 在点击对话框"确定"按钮前,不能进行任何其它操作。 2. 消息对话框通常可以用于调试程序。 3. alert输出内容,可以是字符串或变量,与document.write 相似。 <title>alert</title> <scripttype="text/javascript"> functionrec(){ var...原创 2021-04-27 10:53:09 · 449 阅读 · 0 评论 -
js ,jq 表单提交input,form表单
$(“#frm”).submit();<form action="#" method="get" name="frm" id="frm" > <input type="button" name="but" value="购买会员" style="background:#12ADFF;height:100px;width:85%;color:#FFF;font-size:36px;font-weigh原创 2017-03-29 17:21:22 · 1624 阅读 · 0 评论 -
radio和CheckBox
<label for="radiobutton"> <input type="radio" name="radiobutton" id="radiobutton" value="radiobutton" />测试? </label>原创 2017-03-30 09:40:50 · 355 阅读 · 0 评论 -
js 获取radio和checked详解
<script> $("input[name=but]").click(function(){ //open_id=$("input[name=open_id]").val(); wangwang_no=$("input[name=wangwang_no]").val(); //vipmoney=$("input[name=vipmoney]").val();if(wangw原创 2017-03-30 11:38:00 · 10969 阅读 · 0 评论 -
总结curl
对于做过数据采集的人来说,cURL一定不会陌生。虽然在PHP中有file_get_contents函数可以获取远程链接的数据,但是它的可控制性太差了,对于各种复杂情况的采集情景,file_get_contents显得有点无能为力。因此,本文将为你介绍采集神器cURL的使用。 内容导航 工具 火狐浏览器(FireFox) + Firebug 总结 案例解析 一、简单的采集 二、需要参数的采集 三、...转载 2018-03-16 09:46:18 · 460 阅读 · 0 评论 -
curl模拟提交,绕过验证最新版
<?php $url="http://t.cn/RDzqgFc"; $headers=array( "Cookie: " ); $zho=getPage ($url,$headers) ; print_r($zho); function getPage ($url,$headers) { $useragent = 'Mozilla/5.0 (Macintosh; Intel Mac...原创 2018-08-05 14:41:13 · 934 阅读 · 0 评论