


How to deal with checkbox/radio onchange not compatible with ie8 in javascript
Jun 18, 2017 pm 01:06 PMThis article mainly introduces the relevant information about javascript checkbox/radio onchange is not compatible with ie8. Friends in need can refer to it
javascript checkbox/radio onchange is not compatible with ie8 solution
Under ie8, checkbox onchange fails to trigger the custom function, how to solve this problem The problem is as follows:
function forIe(){ if($.browser.msie){ //判断浏览器是否为ie $("input[type='checkbox']").click(function(){ this.blur(); //先失去焦点,执行你的自定义的操作 this.focus();//再获取焦点,是鼠标还在那个地方,好进行下一步的操作 }) } }
Quote on the corresponding setting page:
$(function(){ forIe(); })
The above is the detailed content of How to deal with checkbox/radio onchange not compatible with ie8 in javascript. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

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

Recommended: Excellent JS open source face detection and recognition project

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts

What should I do if win11 cannot use ie11 browser? (win11 cannot use IE browser)

JavaScript and WebSocket: Building an efficient real-time weather forecasting system

Simple JavaScript Tutorial: How to Get HTTP Status Code

How to cancel the automatic jump to Edge when opening IE in Win10_Solution to the automatic jump of IE browser page
