неопределенное значение один флажок JavaScript на другой странице - PullRequest
1 голос
/ 25 мая 2011

У меня есть две страницы, первая страница - index.php. Я также использую в ней фреймворк Facebox.вторая страница - addevent.php. Я пытался разными способами поймать значение одиночного флажка в addevent.php и передать его в index.php.но это не показывало ценность.так что-то не так с моим кодом?что я скучаю?любая помощь будет признательна ..

index.php



echo ">".$check=$_REQUEST['check'];
echo "check[0]: ".$check[0]; 
&lthead&gt
&ltscript src="inc/jquery-1.4.4.min.js" type="text/javascript"&gt&lt/script&gt 
&ltscript src="inc/facebox.js" type="text/javascript"&gt&lt/script&gt

&ltbody>
&lta href="addevent.php" rel="facebox" &gtlink&lt/a&gt 
&lt/body>

addevent.php



&lthead&gt
&ltscript src="inc/jquery-1.4.4.min.js" type="text/javascript"&gt&lt/script&gt
&ltscript src="inc/facebox.js" type="text/javascript"&gt&lt/script&gt
&ltscript language="javascript" type="text/javascript"&gt
function AddEventAgenda(){

//--- i've tried this method & firebug said:document.eventAgendaForm.checkName[0] is undefined----

    var elemLength = document.eventAgendaForm.checkName.length;
    if (elemLength==undefined) {
    elemLength=1;
    if (document.eventAgendaForm.checkName.checked) {
        // we know the one and only is checked
        var check = "&check[0]=" + document.eventAgendaForm.checkName[0].value;
    }
    } else {
        for (var i = 0; i&ltelemLength; i++) {
            if (eventAgendaForm.checkName[i].checked) {
        var check = "&check["+i+"]=" + document.eventAgendaForm.checkName[i].value + check;
            }
        }
    }

//--- also this one same firebug said:document.eventAgendaForm.checkName[0] is undefined---

    var len = document.eventAgendaForm.checkName.length;
    if(len == undefined) len = 1;
    for (i = 0; i &lt len; i++){
    var check = "&check["+i+"]=" + document.eventAgendaForm.checkName[i].value + check;
    }


//--- and this one same firebug said:document.eventAgendaForm.checkName[0] is undefined---

    var formNodes  = document.eventAgendaForm.getElementsByTagName('input');
    for (var i=0;i&ltformNodes.length;i++) {
    /* do something with the name/value/id or checked-state of formNodes[i] */
    if(document.eventAgendaForm.checkName[i].checked){
    var check = "&check["+i+"]=" + document.eventAgendaForm.checkName[i].value + check;
    }
}

//--- and this one same firebug said:document.eventAgendaForm.checkName[0] is undefined---

if (typeof document.eventAgendaForm.checkName.length === 'undefined') {
   /*then there is just one checkbox with the name 'user' no array*/
        if (document.eventAgendaForm.checkName.checked == true )
                            {
                                var check = "&check[0]=" + document.eventAgendaForm.checkName[0].value;
                            }   
    }else{
  /*then there is several checkboxs with the name 'user' making an array*/
        for(var i = 0, max = document.eventAgendaForm.checkName.length; i &lt max; i++){
            if (document.eventAgendaForm.checkName[i].checked == true )
                            {
                                var check = "&check["+i+"]=" + document.eventAgendaForm.checkName[i].value + check;
                            }
        }
    }

//-----------------------------------------------
    window.location="index.php?tes=1" + check; // display the result
    $(document).trigger('close.facebox');
}

&lt/script&gt


&ltscript type="text/javascript"&gt
// i don't know if these code have connection with checkbox or not? 
        function addLoadEvent(func) {
            var oldonload = window.onload;

            if (typeof window.onload != "function") {
                window.onload = func;
            } else {
                window.onload = function () {
                    oldonload();
                    func();
                }
            }
        }

        addLoadEvent(function () {
            initChecklist();
        });
        function initChecklist() {
            if (document.all && document.getElementById) {
                // Get all unordered lists
                var lists = document.getElementsByTagName("ul");

                for (i = 0; i &lt lists.length; i++) {
                    var theList = lists[i];

                    // Only work with those having the class "checklist"
                    if (theList.className.indexOf("checklist") &gt -1) {
                        var labels = theList.getElementsByTagName("label");

                        // Assign event handlers to labels within
                        for (var j = 0; j &lt labels.length; j++) {
                            var theLabel = labels[j];
                            theLabel.onmouseover = function() { this.className += " hover"; };
                            theLabel.onmouseout = function() { this.className = this.className.replace(" hover", ""); };
                        }
                    }
                }
            }
        }
    &lt/script&gt


&lt/head&gt

&ltform name="eventAgendaForm" id="eventAgendaForm" &gt
&ltul class="checklist cl3"&gt
&ltli &gt&ltlabel for="c1"&gt
&ltinput id="checkId" name="checkName" value="1" type="checkbox" &gt
&lt/label&gt&lt/li&gt&lt/ul&gt
&ltinput class="tombol" type="button" name="Add" value="Add" onclick="AddEventAgenda()" /&gt
&lt/form&gt

1 Ответ

0 голосов
/ 25 мая 2011

почему бы не использовать jQuery, если вы используете библиотеку jQuery?

  var checkbox_val=jQuery("#CHECKBOX_ID_HERE").val();//gets you the value regardless if checked or not
  var checkbox_val=jQuery("#CHECKBOX_ID_HERE").attr("checked"); //returns checked status

или

var global_variable=""; //should be initialized outside any function
jQuery("#FORM_ID_HERE").children(":input[type='checkbox']").each(function(){
    if (jQuery(this).attr("checked"))global_variable+="&"+jQuery(this).attr("name")+"="+jQuery(this).val();
});

это просто предложение начать, а не идеал. идеальная часть - использовать [] в вашей форме.

...