0

我正在处理这个表格:

http://jsfiddle.net/pPWr3/14/

在 chrome 和 firefox 中显示正常,但在 Internet Explorer 9 中显示和功能问题:

  • “返回”和“下一页”功能不起作用。
  • “返回”和“下一步”按钮出现在表单的第一页。
  • 所有页面都显示在首页上。
  • javascript onblur 效果不起作用。

谁能建议我可以解决此问题或提供适用于 ie 的 jsfiddle 版本?

谢谢你。

使用的脚本是托管在 github 上的修改版本:

和:

相关的多页脚本是:

//jquery multipage behaviour
$('#multipage').multipage({transitionFunction:transition, 
'navigationFunction': function(pages){},
'inactiveDot': '<img src="http://dummyimage.com/10x10/cccccc/cccccc.png" style="margin-right: 5px">',
'activeDot': '<img src="http://dummyimage.com/10x10/c27daf/c27daf.png" style="margin-right: 5px">'
});

// progresses user to next page on clicking option one or two on the front page
$("#option1, #option2").click( function(){        

$('#multipage').nextpage();  

});
// handles previous/next page click
$('.multipage_back').click(function(){            
$('#multipage').prevpage();
});
$('.multipage_next').click(function(){
if(!validate())  return false;
$('#multipage').nextpage();                        
});    
4

1 回答 1

0

解决方案是脚本托管在 github gist 上,并且由于某种原因,该表单仅在将脚本放置在不同的托管上时才有效。

于 2012-12-11T14:41:00.043 回答