火狐浏览器不兼容JS 请高手解决 在线等
这是计时的JSfunctionrecorderTime(){$('s').innerText=parseInt($('s').innerText)+1;$('hidden...
这是计时的JS
function recorderTime()
{
$('s').innerText = parseInt($('s').innerText)+1;
$('hidden_time').value = parseInt($('hidden_time').value)+1;
if( parseInt($('s').innerText)==60)
{
$('m').innerText = parseInt($('m').innerText)+1;
$('s').innerText = 0;
if(parseInt($('m').innerText)==60)
{
$('h').innerText = parseInt($('m').innerText)+1;
$('m').innerText = 0;
}
}
var time_text = $('h').innerText+"时"+$('m').innerText+"分"+$('s').innerText+"秒";
$('hidden_time_text').value = time_text;
}
这是随屏幕滚动的JS
function ceshi()
{
if (document.documentElement && document.documentElement.scrollTop)
{
//IE
$('timer').style.marginTop = document.documentElement.scrollTop+50+"px";
}
else
{
$('timer').style.marginTop = document.body.scrollTop+50+"px";
}
}
这两个在火狐浏览器下无效,请高手帮忙解决哦 展开
function recorderTime()
{
$('s').innerText = parseInt($('s').innerText)+1;
$('hidden_time').value = parseInt($('hidden_time').value)+1;
if( parseInt($('s').innerText)==60)
{
$('m').innerText = parseInt($('m').innerText)+1;
$('s').innerText = 0;
if(parseInt($('m').innerText)==60)
{
$('h').innerText = parseInt($('m').innerText)+1;
$('m').innerText = 0;
}
}
var time_text = $('h').innerText+"时"+$('m').innerText+"分"+$('s').innerText+"秒";
$('hidden_time_text').value = time_text;
}
这是随屏幕滚动的JS
function ceshi()
{
if (document.documentElement && document.documentElement.scrollTop)
{
//IE
$('timer').style.marginTop = document.documentElement.scrollTop+50+"px";
}
else
{
$('timer').style.marginTop = document.body.scrollTop+50+"px";
}
}
这两个在火狐浏览器下无效,请高手帮忙解决哦 展开
展开全部
您好!很高兴为您答疑!
innerText 换成textContent试试,火狐浏览器可以安装Firebug,检查页面代码。
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
innerText 换成textContent试试,火狐浏览器可以安装Firebug,检查页面代码。
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
展开全部
firefox下面不支持js的innerText ,要把它换成textContent,你改一下试试...
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$('s').innerText = parseInt($('s').innerText)+1;
改
$('s').html(parseInt($('s').html())+1);
下面等同。
改
$('s').html(parseInt($('s').html())+1);
下面等同。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用火狐看哪里报错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询