我发现同样的问题也发布在stackoverflow上,但我没有得到正确的答案所以我再次发布它是什么原因是jquery点击功能在Firefox上工作但不工作在chrome 的 Jquery的
$("#companypancard").click(function(){
$(".nav a.active").removeClass("active");
$("#registrationandlicenses").addClass("active");
$("#sab2d").hide();
$("#header-box-content").hide();
$(".entire-box-content").show();
$(".line, .back").show();
$(".h1-content").html("Company Pancard");
$(".p-discription").html("PAN is mandatory for every organization for financial transition and open a bank account.");
});
$("#registrationandlicenses").mouseenter(function(){$("#sab2d").show();});
$("#sab2d").mouseleave(function(){$("#sab2d").hide();});
修改
JSFiddle在这里创建
**我的代码正在处理js小提琴,但是当我上传服务器上没有工作在chrome但工作在firefox..my第3个选项卡是注册您的业务其所有子菜单工作相同的代码我在下一个选项卡注册和许可证上使用(第一个子菜单)公司泛卡不工作...... **
答案 0 :(得分:0)
希望这适合你
$(document).on('click', '#companypancard',function(){
// code to execute
});
答案 1 :(得分:0)
https://jsfiddle.net/o2gxgz9r/9480/
https://jsfiddle.net/o2gxgz9r/9481/
$(document).on('click', '#companypancard',function(){
});
$("#companypancard").click(function(){
});
两种情况都在使用chrome。因此,请检查您的jquery是否已在您的页面中正确加载,并检查您的jquery是否支持您的chrome版本。
同样你也遇到了一个错误。你只需将你的代码放在jsfiddle中并发送链接。