JQuery返回一个属性数组

时间:2016-01-20 10:53:32

标签: javascript php jquery

所以我正在尝试使用此脚本来获取属性数组。但我无法让它正常工作。

function synch(){
    var look=$("#reviernummer").val();
    var secure=$('.sorted').each(function() {
        return (this.attr("tag");
        });
    //alert(look);
    //alert(secure[5]);
    //alert(secure.length);
    $("option").filter(".sorted"&!"#title" == look).css("display", "none");
};

正如您所看到我从SQL表中加载它所以我希望它在下拉列表中获取所有条目的标记值,在我得到之后我想过滤它们以及所有不匹配的条目隐藏起来。 <select>现在应该只显示我想要的元素。

<select class="required" id="revierbereich" style="width:240px;" name="verhaltenscode_neu" >
    <?php $selected = $arrayAktuellerDatensatz['verhaltenscode_neu'];?>
    <option selected ="selected" value="<?php echo $selected; ?>"><?php echo $selected; ?></option>
    <?php loadselect_neu('helpbrutstatus', 'Fischereibuchzahl', 'Fischereibuchzahl', $_Get["verhaltenscode"]);?>
</select><br />




<?php
function loadselect_neu($tblname, $value, $caption, $VC){
    if ($tblname == 'helpbrutstatus'){

        $query = "SELECT * FROM helpbrutstatus " ;

        $result = mysql_query($query) or die(mysql_error());
        while($row = mysql_fetch_array($result)){
            $fieldvalue = $row['Brutstatus'];
            $status = $row['Fischereibuchzahl'];
            $fieldcaption = $row['Brutstatus']; ?>
            <option value="<?php echo $fieldvalue;?>" title="<?php echo $status;?>" tag="<?php echo $status;?>" class="sorted"><?php echo $status."&nbsp;|&nbsp;".$fieldcaption."&nbsp;|&nbsp;".$VC ?></option> <?php
        }
    }
}

1 个答案:

答案 0 :(得分:0)

要根据HTML元素的属性创建数组,请使用map()。另请注意,创建自己的非标准属性是无效的HTML。如果要使用元素存储自定义数据,请使用data-*属性。试试这个:

var secure = $('.sorted').map(function() {
    return $(this).data("tag");
}).get();
while($row = mysql_fetch_array($result)) {
    // code here... ?>
    <option value="<?php echo $fieldvalue;?>" title="<?php echo $status;?>" data-tag="<?php echo $status;?>" class="sorted">
        <?php echo $status."&nbsp;|&nbsp;".$fieldcaption."&nbsp;|&nbsp;".$VC ?>
    </option> 
<?php }