我面临的问题是,我的调查中有一组问题。如果他不是会员,第一个问题要求用户单击复选框。如果用户选中该复选框,则光标应自动滚动到页面底部,跳过其后的所有问题。
我使用 jquery 尝试了不同的功能,但没有一个起作用。这是我之前尝试过的代码(PS也没有这个工作)
<?php
if(!stristr($_SERVER['PHP_SELF'],"printSummary")) {
require_once("../lib/include/common.inc.php");
} else {
require_once("../../lib/include/common.inc.php");
}
ob_start();
$node_id = $parentnode?$parentnode:getDataFromSession("data,node_id");
$node_name = get_node_name( $node_id,$_SESSION["survey"],$_SESSION['idLink']);
$surveyForText = getText2("This survey is for:")." ".$node_name;
if(strlen($node_name)>0) {
echo "<script type='text/javascript'>";
echo "$(document).ready(function(){";
echo "$('.generalErrorMsg').first().addClass('generalErrorMsgWithMargin').text(\"$surveyForText\");";
echo "});";
echo "</script>";
}
//code that I am talking about starts here
$currentPageNum = currentPageNumber();
if($currentPageNum==4)
{
echo "<script type=\"text/javascript\">
$(document).ready(function(){
$('input[type=checkbox]').click(function() {
alert('here');
setTimeout(function() {
window.scrollTo(0, 1) },100);
});
//window.scrollBy(100,100); // horizontal and vertical scroll increments
//scrolldelay = setTimeout('pageScroll()',80); // scrolls every 80 milliseconds
});";
echo "</script>";
}
?>
请帮助我解决问题的代码。在此先感谢-Jathin