video.select.js 589 Bytes
$(function(){
    $("input[name='videoChioce']").live('click',function(){
        var name = $(this).attr("val");
        var id = $(this).val();
        $("#chioceVideo").attr("val",id);
        $("#chioceVideo").text("已选择:"+name);
    })
})

jQuery.VideoStore = {
    screen: function () {
        var svn = $("#serchVideoName").val();

        $(".my-v-list").each(function () {
            var vname = $(this).text();

            if (vname.indexOf(svn) >= 0) {
                $(this).show();
            } else {
                $(this).hide();
            }
        })
    }
}