码迷,mamicode.com
首页 > 其他好文 > 详细

3.5周总结

时间:2017-03-05 16:34:52      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:moc   tom   change   turn   转换   ajax   for   dex   ext   

关于oninput onpropertychange

oninput在ie9下bug的修复:

// IE9 polyfill for the backspace/delete/cut
(function(d){
console.log(navigator.userAgent);
if (navigator.userAgent.indexOf(‘MSIE 9‘) === -1) return;

d.addEventListener(‘selectionchange‘, function() {
var el = d.activeElement;

if (el.tagName === ‘TEXTAREA‘ || (el.tagName === ‘INPUT‘ && el.type === ‘text‘)) {
var ev = d.createEvent(‘CustomEvent‘);
ev.initCustomEvent(‘input‘, true, true, {});
el.dispatchEvent(ev);
}
});
})(document);

onpropertychange是ie浏览器的特性,ie9以上版本也会触发,可以使用

navigator.userAgent.indexOf(‘MSIE 8‘)判断

在ie8可以使用strToJson将类json字符串转换为json

mockjax是一个可以用来模拟ajax的插件




3.5周总结

标签:moc   tom   change   turn   转换   ajax   for   dex   ext   

原文地址:http://www.cnblogs.com/july95685/p/6505592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!