博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery ui 1.9.2+ 引起连接target失效问题
阅读量:6210 次
发布时间:2019-06-21

本文共 926 字,大约阅读时间需要 3 分钟。

hot3.png

在使用jquery ui 1.9.2以上版本时,a标签的target失效了,不能让新连接页面到指定的iframe中,非常头疼。

经过1.9.1 与 1.10.2两版本比较,发现多了以下代码

e("").data("a-b", "a").removeData("a-b").data("a-b")			&& (e.fn.removeData = function(t) {				return function(i) {					return arguments.length ? t.call(this, e.camelCase(i)) : t							.call(this)				}			}(e.fn.removeData)), e.ui.ie = !!/msie [\w.]+/			.exec(navigator.userAgent.toLowerCase()), e.support.selectstart = "onselectstart" in document			.createElement("div"), e.fn.extend({				disableSelection : function() {					return this.bind((e.support.selectstart									? "selectstart"									: "mousedown")									+ ".ui-disableSelection", function(e) {								e.preventDefault()							})				},				enableSelection : function() {					return this.unbind(".ui-disableSelection")				}			}),

于是果断删掉,结果就没事了。

但是比较蛋疼的是,看不懂这段代码是什么意思。。。。。。。(js真心灵活啊)

反正现在是没事了,先这么用着吧,不知哪位大牛若能指导下,万分感激!!!

转载于:https://my.oschina.net/fangshaowei/blog/192231

你可能感兴趣的文章
【转】牛逼闪闪的Ruby迭代器
查看>>
Windows 8 企业部署系列之(八)
查看>>
Zend Studio 主題更改
查看>>
echarts 设置地图默认缩放比例 尺寸
查看>>
PHP内存池中的存储层
查看>>
PHP开发APP接口1——APP接口简介
查看>>
家用nas的过去现在和未来--2008n年
查看>>
Linux安装Zend Guard 和 ioncube
查看>>
android点滴25:Fragment加载时犯的低级错误android.view.Infla...
查看>>
x264 slicetype 选定中的x264_lowres_context_init函数分析
查看>>
ListView使用方法
查看>>
收藏的文章
查看>>
【工具使用系列】关于 MATLAB Simulink Stateflow, 你需要知道的事
查看>>
uClibc库的交叉编译
查看>>
让spring mvc支持put请求
查看>>
一个简单的随机数方法,支持小数
查看>>
centos下yum安装ffmpeg
查看>>
给 Android 开发者的 RxJava 详解
查看>>
IOS UIWebView调用H5页面后退方法出现“about:blank”
查看>>
ARM嵌入式Linux系统开发详解(第2版)
查看>>