首页 > 代码库 > easyui combobox name选择器
easyui combobox name选择器
HTML:
<input name="myinputdom" id="myinputdom" class="easyui-combobox myinputdom" data-options="......" />
当使用如下选择器来操作combobox对象时,会出现不同的表现。
JavaScript:
$(‘input[name=myinputdom]‘).combobox(...);//错误
$(‘:input[name=myinputdom]‘).combobox(...);//错误
$(‘#myinputdom‘).combobox(...);//正确
$(‘.myinputdom‘).combobox(...);//正确
分析:
使用firefox查看最终的页面代码如下:
<input id="myinputdom" class="easyui-combobox combobox-f combo-f textbox-f" data-options="......" style="display: none;" textboxname="myinputdom" comboname="myinputdom"><!-- 使用id和class选择器选中的是该元素,因为该元素属于easyui-combobox类型,所有可以使用combobox的方法 --!>
<span class="textbox combo" style="width:
132px; height: 20px;">
<span class="textbox-addon textbox-addon-right" style="right:
0px;">
<input class="textbox-text validatebox-text" type="text" autocomplete="off" readonly="readonly" placeholder="" style="margin-left:
0px; margin-right: 18px; padding-top: 2px; padding-bottom: 2px; width: 106px;">
class="textbox-value"type="hidden"name="myinputdom"value="http://www.mamicode.com/3
hours"><!--
使用表单加属性选择器选中的是该元素,因为该元素不是easyui-combobox类型,所有无法使用combobox的方法 --!>
</span>
所以,我们可以使用ID和类选择器去编辑easyui组件,不可以用input[name=‘myinputdom‘]。一般来说,单个组件我们可以使用ID选择器,批量编辑我们可以使用类选择器。
参考原文:http://blog.csdn.net/zxygww/article/details/47978293
easyui combobox name选择器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。