ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
楼主: kwin_zh

[求助] 【急】网页内的文本框没有ID只有Name,如何用VBA输入

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-6-20 22:58 来自手机 | 显示全部楼层
northwolves 发表于 2017-6-20 22:17

-----我是分割线--------------------------------
这一部分源代码如下:
<!-- 内容开始 -->
        <link href="https://*******" rel="stylesheet">
<div class="col-xs-10 right-content">
    <div class="right-content-top">
        <form>
            <div class="n-search">
                <span>姓名:</span><input type="text" class="n-text-ipt n-w120 mr40" name="realName" ng-model="search.realName"/>
                <span>手机号:</span><input type="text" class="n-text-ipt n-w120 mr40" name="mobile" ng-model="search.mobile"/>

                <button type="button" class="crm-btn" ng-click="submitMemberSearch()"><em class="icon-serch"></em>搜索</button>
                <button type="reset" class="crm-btn-b" ng-click="clearMemberSearch()"><em class="icon-reset"></em>重置</button>
            </div>
        </form>
    </div>
    <div class="right-content-main bind-main" ng-if="retMsg==-1">
        <div class="m-binded">
            <span><img src="url***" alt=""></span>
            <p>无该学员信息</p>
        </div>
    </div>
    <div class="right-content-main bind-main" ng-if="retMsg==1">
        <div class="m-binded">
            <span><img src="url" alt=""></span>
            <p>该学员已毕业或未入学</p>
        </div>
    </div>
    <div class="right-content-main bind-main" ng-if="retMsg==2">
        <div class="m-binded">
            <span><img src="url" alt=""></span>
            <p>该学员已经注册,无需重复注册</p>
        </div>
    </div>
    <div class="right-content-main" ng-if="retMsg==0">
        <table id="treeTable1" class="cm-table">
            <tr>
                <td class="n-td n-td01">专业方向</td>
                <td class="n-td n-td02">入学时间</td>
                <td class="n-td n-td03">学号</td>
                <td class="n-td n-td04">班级</td>
                <td class="n-td n-td05">操作</td>
            </tr>
            <tr ng-repeat="m in memberList">
                <td class="n-td n-td01">{{m.channelCode}}</td>
                <td class="n-td n-td02">{{m.registerTime | limitTo:10}}</td>
                <td class="n-td n-td03">{{m.fromMemberId>0?x.fromMemberId:"--"}}--</td>
                <td class="n-td n-td04">{{m.fromMemberId>0?"已注册":"--"}}--</td>
                <td class="n-td n-td05"><button class="crm-btn-b" ng-click="bind(m.id)">录入</button></td>
            </tr>
        </table>
    </div>
</div>

TA的精华主题

TA的得分主题

发表于 2017-6-21 00:31 | 显示全部楼层
kwin_zh 发表于 2017-6-20 22:58
-----我是分割线--------------------------------
这一部分源代码如下:

用     jQuery

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-6-21 08:41 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

全才,请问这个JQUERY具体怎么写呢?感谢~

TA的精华主题

TA的得分主题

发表于 2017-6-21 08:53 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
kwin_zh 发表于 2017-6-21 08:41
全才,请问这个JQUERY具体怎么写呢?感谢~

具体怎么写,你是内网无法测试,所以不好写。我觉得用 xmlhttp或者winhttp对象应该也能解决,不必用IE控件等,用不着打开网页,你的最终目的不是  登录后获取数据吗?第一次模拟登录请求,第二次登录后,请求并获取数据,OK!

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-6-21 08:57 | 显示全部楼层
duquancai 发表于 2017-6-21 08:53
具体怎么写,你是内网无法测试,所以不好写。我觉得用 xmlhttp或者winhttp对象应该也能解决,不必用IE控 ...

恩恩  大哥你好,我的操作步骤是我有数据,要把这些数据一组组输入到文本框,点击搜索,没有录入的就会出现表格后面有个录入按钮,点击提交即可,已经录入的就会提示已经录入,直接点击重置即可录入下一组数据。

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-6-22 11:51 来自手机 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-6-22 16:41 来自手机 | 显示全部楼层
求关注  各位路过的大神

TA的精华主题

TA的得分主题

发表于 2017-6-22 16:50 | 显示全部楼层
把 submitMemberSearch() 这个脚本过程发上来看看

TA的精华主题

TA的得分主题

发表于 2017-6-22 16:56 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
kwin_zh 发表于 2017-6-22 16:41
求关注  各位路过的大神

内网内部解决!!!

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-6-27 21:34 来自手机 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-17 00:38 , Processed in 0.041194 second(s), 5 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表