zoukankan      html  css  js  c++  java
  • easyui 控件获取焦点方式

    针对easyui控件前端组织的dom做分析,如下:

    combo/combobox/combogrid类似结构如下:

    <input class="easyui-datebox datebox-f combo-f textbox-f" id="myid" data-options="required: true,buttons:buttons,editable:false,onSelect:selectSDate" style=" 120px; display: none;">
    <span class="textbox textbox-invalid combo datebox" style=" 120px; height: 22px;">
        <span class="textbox-addon textbox-addon-right" style="right: 0px;">
            <a href="javascript:void(0)" class="textbox-icon combo-arrow" icon-index="0" tabindex="-1" style=" 18px; height: 20px;"></a>
        </span>
        <input type="text" class="textbox-text validatebox-text textbox-prompt validatebox-invalid" autocomplete="off" readonly="readonly" placeholder="" style="margin-left: 0px; margin-right: 18px; padding-top: 1px; padding-bottom: 1px;  100px;" title="">
        <input type="hidden" class="textbox-value" name="" value="">
    </span>

    datebox类似结构如下:

    <input class="easyui-datebox datebox-f combo-f textbox-f" id="myid" data-options="buttons:buttons,editable:false,onSelect:selectEDate" style=" 120px; display: none;">
    <span class="textbox combo datebox" style=" 120px; height: 22px;">
        <span class="textbox-addon textbox-addon-right" style="right: 0px;">
            <a href="javascript:void(0)" class="textbox-icon combo-arrow" icon-index="0" tabindex="-1" style=" 18px; height: 20px;"></a>
        </span>
        <input type="text" class="textbox-text validatebox-text textbox-prompt" autocomplete="off" readonly="readonly" placeholder="" style="margin-left: 0px; margin-right: 18px; padding-top: 1px; padding-bottom: 1px;  100px;">
        <input type="hidden" class="textbox-value" name="" value="">
    </span>

    textbox,textbox多行文本类似结构如下:

    <input class="easyui-textbox textbox-f" id="myid" data-options="multiline:true,height:50" style=" 95%; display: none;">
    <span class="textbox easyui-fluid" style=" 927px; height: 50px;">
        <textarea class="textbox-text validatebox-text textbox-prompt" autocomplete="off" placeholder="" style="margin-left: 0px; margin-right: 0px; height: 48px;  925px;"></textarea>
        <input type="hidden" class="textbox-value" value="">
    </span>

    故可以使用如下获取焦点:

    $('#myid').next('span').find('.textbox-txt').focus();
  • 相关阅读:
    如何用伪类画出一个三角形
    关于昨天遇到题目的一点随笔
    opacity与rgba
    选择框脚本_移动/重排选项 P435
    文字等宽
    CSS3风骚渐变
    表单序列化 P436
    选择框脚本_添加/删除选项 P434
    选择框脚本_用事件选中选项,获取选中项信息 P432
    文本框组脚本_自动切换焦点“例如加区号和分机号的电话号码文本框组” P426
  • 原文地址:https://www.cnblogs.com/lcawen/p/7525381.html
Copyright © 2011-2022 走看看