前端开发2023年05月02日
JQ前台代码:var keyword=encodeURIComponent($("#keyword").val()); var ajaxform=$.post("/mdaima.php",{keyword:keyword},function(result){ });PHP后台代码:$keyword=...
前端开发2023年05月02日
1、json字符串中只有一组string jsonstr = "{'name':'xiaoming','age':'11','lastTime':'2016-07-26','address':'luo...
前端开发2023年05月02日
document.write("<script type='text/javascript' src='js/abc.js'></script><script language='javascript' src='js/12...
前端开发2023年05月02日
$(".body_box").append(result); //在被选元素的结尾插入指定内容 $(".body_box").prepend(result);//在被选元素的开关插入指定内容...
前端开发2023年05月02日
<script lang="javascript"> function disableDebugger() { debugger; } $(document).ready(function () { &nb...
前端开发2023年05月02日
<div id="bodys" style="display:none;"> <!-- muted 如果出现该属性,视频的音频输出为静音。 loop="loop" --> <video i...
前端开发2023年05月02日
function yanzheng_xiaoshu(v){ var res=$("#"+v).val(); var reg=/^[1-9][0-9]*([.][0-9]{1})?$/; if (!reg.test(res) || parseFloat(res)<0){ $(...
前端开发2023年05月02日
var ajaxform=$.post("ajax_guize.php",{action:'go',guize_id:guize_id},function(result){ result=result.replace(/\s/g,'')...
前端开发2023年05月02日
<script> $(function() { $("form[name='formsa'] input:text").keypress(function(e) { if (e.which == 13){ // 判断所按是否回车键 ...
前端开发2023年05月02日
<script> //---------------------------------------------------------- // 功能:根据身份证号获得出生日期 // 参数:身份证号 psidno // 返回...