我在IE11中遇到填充问题,并且我尝试使用IE特定的语句来控制CSS,例如
<!--[if IE 11]>
<link rel="stylesheet" type="text/css" href="http:kin/frontend/enterprise/wyf-upgrade/css/styles-ie-11.css" media="all" />
<![endif]-->
Run Code Online (Sandbox Code Playgroud)
但是这种情况无法正常工作。请提出解决该问题的任何解决方案。
我想在单击功能上传递空白值,并希望双击时重定向.
这是我的HTML代码

j-query的代码
$(function () {
var clicker = $('#Nav a');
$(this).click(function () {
$(this).attr('href', '');
});
clicker.dblclick(function () {
window.location = $(this).attr("href");
});
}
Run Code Online (Sandbox Code Playgroud)
请建议我如何为两个不同的函数或任何其他方式传递相同的属性值.