今天又犯2了-小弟我不是在犯2,就是在犯2的路下
今天又犯2了-我不是在犯2,就是在犯2的路上。
在linux下gg浏览器调试 正常.到了win下gg 浏览器某个div无法正常显示...
左调整 右调整.该死的是我换到ie也不正常,firefox ok,各种sm...
后来发现...是我win下gg浏览器的广告过滤插件把这个div 给过滤了。给折磨死了...还好不算完败,顺带也解决了IE的问题,ie的问题是老问题,ajax get 中文的时候编码出错,然后打开ie6(我真是对国内这些ie6的死fans无语)一切ok.
哎哟...看样子没出去游行一下是不行的。
------解决方案--------------------
我最初也是去兼容各个版本浏览器,想做到尽善尽美
后来发现这是不可能任务,尤其是当浏览器在短期内发布多个版本的时候
然后就是改变思路,以最简单的方式做网页,简化功能,做太多贴心的事反而不贴心
ajax最初觉得是个好东西,但现在反而觉得很烦,打开一个网页,看DNS/http记录有近百个请求
ajax用在客户需要变换的地方就好了,自动请求ajax反而很累赘
------解决方案--------------------
div+css 兼容浏览器的第一要务
* { margin:0; padding:0; }
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
程序猿就是个悲哀………………
------解决方案--------------------
牛B的工作时间……不过还是尽量别透支身体啦
------解决方案--------------------
IE可以忽略掉了
------解决方案--------------------
你就那实力~~~
------解决方案--------------------
1点多还在前线 。妞妞注意休息哦~
前端兼容那东西的确麻烦的很,不花点精力征服不了他们...
------解决方案--------------------
都猜错了,起得早而已,偶也是非常熟练使用梯子的一员,爬啊爬
------解决方案--------------------
这个二我也犯过
------解决方案--------------------
所有程序员,要是能携手同时不考虑IE6就好了,美国都淘汰了,我们还百分之二三十
------解决方案--------------------
放弃ie6吧,骚年
------解决方案--------------------
早就跟你说IE6很....的 在你的首页加一个这个吧 IE6必死 顺便高呼三声 火狐我爱你
------解决方案--------------------
周末的时候晚上12-3点事最精神的、、、、、
------解决方案--------------------
浏览器兼容啊!!!
------解决方案--------------------
------解决方案--------------------
你这不算啥 我经常调试半天 然后擦 才发现是因为代码没update
------解决方案--------------------
正常啊,哪个程序员没2过
------解决方案--------------------

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Title: Methods and code examples to resolve 403 errors in jQuery AJAX requests. The 403 error refers to a request that the server prohibits access to a resource. This error usually occurs because the request lacks permissions or is rejected by the server. When making jQueryAJAX requests, you sometimes encounter this situation. This article will introduce how to solve this problem and provide code examples. Solution: Check permissions: First ensure that the requested URL address is correct and verify that you have sufficient permissions to access the resource.

jQuery is a popular JavaScript library used to simplify client-side development. AJAX is a technology that sends asynchronous requests and interacts with the server without reloading the entire web page. However, when using jQuery to make AJAX requests, you sometimes encounter 403 errors. 403 errors are usually server-denied access errors, possibly due to security policy or permission issues. In this article, we will discuss how to resolve jQueryAJAX request encountering 403 error

Using Ajax to obtain variables from PHP methods is a common scenario in web development. Through Ajax, the page can be dynamically obtained without refreshing the data. In this article, we will introduce how to use Ajax to get variables from PHP methods, and provide specific code examples. First, we need to write a PHP file to handle the Ajax request and return the required variables. Here is sample code for a simple PHP file getData.php:

How to solve the problem of jQueryAJAX error 403? When developing web applications, jQuery is often used to send asynchronous requests. However, sometimes you may encounter error code 403 when using jQueryAJAX, indicating that access is forbidden by the server. This is usually caused by server-side security settings, but there are ways to work around it. This article will introduce how to solve the problem of jQueryAJAX error 403 and provide specific code examples. 1. to make

Ajax (Asynchronous JavaScript and XML) allows adding dynamic content without reloading the page. Using PHP and Ajax, you can dynamically load a product list: HTML creates a page with a container element, and the Ajax request adds the data to that element after loading it. JavaScript uses Ajax to send a request to the server through XMLHttpRequest to obtain product data in JSON format from the server. PHP uses MySQL to query product data from the database and encode it into JSON format. JavaScript parses the JSON data and displays it in the page container. Clicking the button triggers an Ajax request to load the product list.

How to use Ajax functions to achieve asynchronous data interaction With the development of the Internet and Web technology, data interaction between the front end and the back end has become very important. Traditional data interaction methods, such as page refresh and form submission, can no longer meet user needs. Ajax (Asynchronous JavaScript and XML) has become an important tool for asynchronous data interaction. Ajax enables the web to use JavaScript and the XMLHttpRequest object

Understanding the Ajax Framework: Explore five common frameworks, requiring specific code examples Introduction: Ajax is one of the essential technologies in modern web application development. It has become an indispensable part of front-end development because of its features such as supporting asynchronous data interaction and improving user experience. In order to better understand and master the Ajax framework, this article will introduce five common Ajax frameworks and provide specific code examples to help readers gain an in-depth understanding of the usage and advantages of these frameworks. 1. jQuery jQuery is currently the most

Build an autocomplete suggestion engine using PHP and Ajax: Server-side script: handles Ajax requests and returns suggestions (autocomplete.php). Client script: Send Ajax request and display suggestions (autocomplete.js). Practical case: Include script in HTML page and specify search-input element identifier.
