摘要: http://api.jquery.com/height/ JS文件: $(document).ready(function () { //CSS方法 //第一种写法 //$("div").css("width", "100px"); //$("div").css("height", "100px" 阅读全文
posted @ 2023-05-29 13:56 它的眼角开过光 阅读(18) 评论(0) 推荐(0)
摘要: Extendsindex.html <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="../../Scripts/jquery-3.4.1.min.js"></script> <sc 阅读全文
posted @ 2023-05-05 22:13 它的眼角开过光 阅读(20) 评论(0) 推荐(0)
摘要: HTML文件 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="../../Scripts/jquery-3.4.1.min.js"></script> <script src="a 阅读全文
posted @ 2023-05-05 21:47 它的眼角开过光 阅读(27) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="../JQuery/jquery-1.8.0.min.js"></script> <script src=" 阅读全文
posted @ 2023-05-05 20:41 它的眼角开过光 阅读(14) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="../../Scripts/jquery-3.4.1.min.js"></script> <script src="Index.js 阅读全文
posted @ 2023-04-26 21:24 它的眼角开过光 阅读(30) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="../../Scripts/jquery-3.4.1.min.js"></script> <script src="delete.j 阅读全文
posted @ 2023-04-26 20:46 它的眼角开过光 阅读(87) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="../Scripts/jquery-3.4.1.min.js"></script> <script src="AddContent. 阅读全文
posted @ 2023-04-26 20:29 它的眼角开过光 阅读(60) 评论(0) 推荐(0)
摘要: private void TextBox_KeyPress(object sender, KeyPressEventArgs e) { if(e.KeyChar!=8&&!Char.IsDigit(e.KeyChar)) { e.Handled = true; } } 或者 private void 阅读全文
posted @ 2023-03-02 15:59 它的眼角开过光 阅读(4160) 评论(0) 推荐(0)
摘要: <system.web> <compilation debug="true" targetFramework="4.0" /> <httpRuntime executionTimeout="90" maxRequestLength="2097151" useFullyQualifiedRedirec 阅读全文
posted @ 2023-03-02 15:27 它的眼角开过光 阅读(50) 评论(0) 推荐(0)
摘要: ajax简介AJAX全称“Asynchronous JavaScript and XML”(异步JavaScript和XML),是指一种创建交互式网页应用的网页开发技术。它有机地包含了以下几种技术: 基于web标准(standards-based presentation)XHTML+CSS的表示; 阅读全文
posted @ 2021-04-14 08:54 它的眼角开过光 阅读(647) 评论(0) 推荐(0)