跳转到内容。
  • 首页
  • 数学基础
  • 机器学习
  • 深度学习
  • 强化学习
  • 计算机视觉
  • 物联网
  • 开发运维
    • 数据库
    • 操作系统
    • 通信协议
      • Modbus
      • MQTT
      • Http
      • WebSocket
      • PLC S7
    • 技术架构
      • Java
      • NET
      • C&C++
      • Python
      • Php
    • 数据架构
    • 应用架构
    • 业务架构
  • 关于博主
  • 搜索
蒋智昊的博客
机器学习 计算机视觉 物联网
  • 首页
  • 数学基础
  • 机器学习
  • 深度学习
  • 强化学习
  • 计算机视觉
  • 物联网
  • 开发运维
    • 数据库
    • 操作系统
    • 通信协议
      • Modbus
      • MQTT
      • Http
      • WebSocket
      • PLC S7
    • 技术架构
      • Java
      • NET
      • C&C++
      • Python
      • Php
    • 数据架构
    • 应用架构
    • 业务架构
  • 关于博主
  • 搜索
分类: <span>jQuery</span>

分类: jQuery

首页 编程语言 Archive for category "jQuery"

Nginx jquery跨域请求解决方案

蒋智昊 jQuery / WebServer / 编程语言 2022年7月19日 2023年4月5日 留下评论
Nginx jquery跨域请求解决方案

方案一:nginx配置

server {

listen

88;

server_name

localhost;

#charset koi8-r;

#access_log

logs/host.access.log

main;

location / {

root

html;

index

index.html index.htm;

}

#error_page

404

/404.html;

# redirect ser

阅读全文"Nginx jquery跨域请求解决方案"

jQuery 链 chaining

蒋智昊 jQuery 2018年11月9日 2018年11月9日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 链 chaining"

jQuery 回调 callback

蒋智昊 jQuery 2018年11月9日 2018年11月9日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 回调 callback"

jQuery 动画 animate

蒋智昊 jQuery 2018年11月9日 2018年11月9日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 动画 animate"

jQuery 淡入淡出 fadeIn fadeTo fadeToggle

蒋智昊 jQuery 2018年11月9日 2018年11月9日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 淡入淡出 fadeIn fadeTo fadeToggle"

jQuery 获取单选按钮radio选中的值

蒋智昊 jQuery 2018年11月8日 2018年11月8日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 获取单选按钮radio选中的值"

jQuery 实现全选、全不选

蒋智昊 jQuery 2018年11月8日 2018年11月8日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 实现全选、全不选"

jQuery 获取select选中的文本与值

蒋智昊 jQuery 2018年11月8日 2018年11月8日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 获取select选中的文本与值"

jQuery 设值 text() html() val() attr()

蒋智昊 jQuery 2018年11月7日 2018年11月7日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 设值 text() html() val() attr()"

jQuery 取值 text() html() val() attr()

蒋智昊 jQuery 2018年11月7日 2018年11月7日 留下评论

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascript”>

阅读全文"jQuery 取值 text() html() val() attr()"

jQuery 元素选择器 #id 选择器 .class 选择器

蒋智昊 jQuery 2018年11月7日 2018年11月7日 留下评论

1、元素选择器

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/javascri

阅读全文"jQuery 元素选择器 #id 选择器 .class 选择器"

jQuery 库中的 $() 是什么?

蒋智昊 jQuery 2018年11月7日 2018年11月7日 留下评论

$() 函数是 jQuery() 函数的别称。

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script typ

阅读全文"jQuery 库中的 $() 是什么?"

关于PHP+jQuery传值取值例子

蒋智昊 jQuery / Php 2018年10月21日 2018年10月21日 留下评论

1、jQuery.php

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>jQuery</title>

<script src=”jquery-3.3.1.min.js”></script>

</head>

<body>

<script type=”text/jav

阅读全文"关于PHP+jQuery传值取值例子"

关于CTS项目的ECharts图表开发

蒋智昊 Cts / jQuery / Php 2018年10月19日 2018年10月21日 留下评论
关于CTS项目的ECharts图表开发

通过ECharts、jQuery,实现图表显示处理。

一、ECharts和jQuery

1、下载:http://echarts.baidu.com/

echarts.min.js

2、下载:https://jquery.com/

jquery-3.3.1.min.js

二、数据文件

user.php

<?php

echo ‘[{“name”:”9001″,”age”:”28″},{“name”:”9002″,”age”:”29″},{“name”:”90

阅读全文"关于CTS项目的ECharts图表开发"

分类

  • 大数据 (23)
    • ClickHouse (1)
    • Druid (1)
    • ETL工具 (2)
    • Flink (1)
    • Hadoop (3)
    • HBase (1)
    • Hive (1)
    • Hue (1)
    • Impala (1)
    • Kylin (1)
    • MapReduced (1)
    • Presto (1)
    • Spark (5)
    • 数据湖 (3)
  • 数据库 (55)
    • ElasticSearch (1)
    • Memcached (1)
    • MongoDB (2)
    • MySQL (17)
    • Oracle (12)
    • PostgreSQL (1)
    • Redis (7)
    • SQLite (1)
    • SqlServer (11)
    • TiDB (2)
  • 机器学习 (157)
    • AForge (1)
    • Dlib (3)
    • Gym (6)
    • Mediapipe (1)
    • ML.NET (4)
    • OpenCV (66)
    • PyTorch (20)
    • Sklearn (26)
    • Tensorflow (3)
    • 神经网络/数学 (27)
  • 测试工具 (10)
  • 消息服务 (32)
    • ActiveMQ (6)
    • Kafka (2)
    • MINA (1)
    • MQTT (5)
    • RabbitMQ (3)
    • RocketMQ (2)
    • WebServer (8)
    • WebSocket (5)
  • 硬件设备 (12)
    • 办公设备 (7)
    • 机械设备 (5)
  • 系统平台 (118)
    • Android (22)
    • Arduino (28)
    • Docker (7)
    • iOS (1)
    • Linux (20)
    • Mac (2)
    • Raspberry Pi (20)
    • Windows (18)
  • 组织管理 (89)
    • 人生感悟 (12)
    • 游学心得 (11)
    • 管理工具 (15)
    • 管理理论 (51)
  • 编程语言 (353)
    • C (13)
    • C# (56)
    • C++ (14)
    • Cts (19)
    • Delphi (13)
    • Electron (2)
    • Html5 (21)
    • Java (112)
    • jQuery (14)
    • NodeJS (3)
    • Objective-C (10)
    • Php (27)
    • Python (33)
    • Scala (1)
    • Swift (11)
    • VB (2)
    • WeiXin (22)
  • 软件产品 (30)
    • APP应用 (2)
    • AVS车辆自动称重系统 (1)
    • BI报表 (4)
    • CRM客户关系系统 (2)
    • CSC客服云 (1)
    • E-Learning培训系统 (1)
    • ERP 金蝶 EAS (4)
    • HR人力资源系统 (2)
    • IM沟通系统 (3)
    • OA办公系统 (3)
    • PLM产品生命周期管理系统 (2)
    • POS收银系统 (2)
    • Shop微商城系统 (2)
    • WMS仓储系统 (1)
  • 软考考试 (49)

标签

Android (22) Linux (20)

网站概况

文章数量:891 篇
评论数量:44 条
页面数量:28 个
标签数量:2 个
最后更新:2023年5月18日

蒋智昊的博客 浙ICP备11005812号 浙公网安备33050202001508
返回顶部