V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  grey5659  ›  全部回复第 5 页 / 共 6 页
回复总数  105
1  2  3  4  5  6  
2016-07-22 14:42:47 +08:00
回复了 grey5659 创建的主题 问与答 input 传值为什么有一个没有收到呢?
@bdbai 明明已经拿到数据了,那可以直接把这个数据再重新放到这个 input 里吗? js 我不太熟
2016-07-22 13:45:58 +08:00
回复了 grey5659 创建的主题 问与答 input 传值为什么有一个没有收到呢?
@bdbai
下面是打开往来单位列表选择:
<form name="form1" id="form1" method="post" action="./exe_current_account.php">
<input name="id" class="mini-hidden" />
<div style="padding-left:11px;padding-bottom:5px;">
<table style="table-layout:fixed;">
<tr>
<td style="width:70px;">往来单位:</td>
<td style="width:150px;">
<input name="current_unit" id="btnEdit1" class="mini-buttonedit" onbuttonclick="onButtonEdit"/>
将选取的 current_unit 提交给 php 接收
<script type="text/javascript">
mini.parse();

function onButtonEdit(e) {
var btnEdit = this;

mini.open({
url: "./current_unit.html",
title: "选择往来单位",
width: 650,
height: 380,
ondestroy: function (action) {

if (action == "ok") {
var iframe = this.getIFrameEl();

var data = iframe.contentWindow.GetData();
data = mini.clone(data);

//btnEdit.setValue(data.id);
btnEdit.setText(data.text);
//alert(data.text);
}
}
});

}

</script>
下面是 current_unit.html 显示往来单位列表
<script type="text/javascript">
mini.parse();

var grid = mini.get("grid1");

//动态设置 URL
grid.setUrl("./data/AjaxService.php?method=SearchEmployeesUnit");
//也可以动态设置列 grid.setColumns([]);

grid.load();

function GetSelecteds() {
var rows = grid.getSelecteds();
return rows;
}
function GetData() {
var rows = grid.getSelecteds();
var ids = [], texts = [];
for (var i = 0, l = rows.length; i < l; i++) {
var row = rows[i];
ids.push(row.id);
texts.push(row.current_unit);//将选中的行(列名)放进表单
}
var data = {};
data.id = ids.join(",");
data.text = texts.join(",");
return data;
}
2016-07-22 13:39:05 +08:00
回复了 grey5659 创建的主题 问与答 input 传值为什么有一个没有收到呢?
@bdbai
贴代码感觉很乱。。
为什么我在里面随便加个字符,然后就可以都传递过来了,如果我不动的话就传过去为空。。。
2016-07-19 11:52:22 +08:00
回复了 grey5659 创建的主题 问与答 ftp 总是经常连不上
找到原因了,因为同步会频繁请求建立连接,服务器本地安全策略做了屏蔽。。坑爹
@notgod 哎暂时先用着吧~买了一年用用先。。
2016-07-11 09:19:44 +08:00
回复了 grey5659 创建的主题 问与答 为什么上传图片会失败呢?
@notgod 嗯我还是放弃 bae 吧,买了个西数的虚拟主机,一年才六十几块,比 bae 还便宜,只是不支持 git 提交代码,请问有替代方案吗?用 ftp 总感觉以后会不方便~
2016-07-06 13:36:04 +08:00
回复了 grey5659 创建的主题 问与答 为啥我看 sql 存储过程什么的会头晕(⊙o⊙)…
@DreamXWay 求推荐一个吧~sqlmanagement 感觉真不好用
2016-07-02 18:48:54 +08:00
回复了 grey5659 创建的主题 问与答 在网上下了一个 python 爬虫程序,怎么运行?
@niboy @ksupertu
我换 linux 环境现在可以运行了,运行$ python doubanSpider.py 后一直在下载,是什么意思额?
/usr/local/lib/python2.7/dist-packages/bs4/__init__.py:166: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("html.parser"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

BeautifulSoup([your markup])

to this:

BeautifulSoup([your markup], "html.parser")

markup_type=markup_type))
Downloading Information From Page 1
Downloading Information From Page 2
Downloading Information From Page 3
Downloading Information From Page 4
Downloading Information From Page 5
Downloading Information From Page 6
WARNING:root:Some characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.
Downloading Information From Page 7
Downloading Information From Page 8
Downloading Information From Page 9
Downloading Information From Page 10
Downloading Information From Page 11
Downloading Information From Page 12
Downloading Information From Page 13
Downloading Information From Page 14
Downloading Information From Page 15
Downloading Information From Page 16
Downloading Information From Page 17
Downloading Information From Page 18
Downloading Information From Page 19
Downloading Information From Page 20
Downloading Information From Page 21
Downloading Information From Page 22
Downloading Information From Page 23
Downloading Information From Page 24
2016-07-02 18:46:47 +08:00
回复了 grey5659 创建的主题 问与答 在网上下了一个 python 爬虫程序,怎么运行?
@luyuncheng 只是当工具用 用
2016-07-01 15:20:43 +08:00
回复了 grey5659 创建的主题 问与答 在网上下了一个 python 爬虫程序,怎么运行?
@niboy 安装了 双击一闪而过,改名成 doubanSpider.pyw 用 IDLE 打开后,运行 run module 提示 Traceback (most recent call last):
File "C:\Users\lenovo\Desktop\DouBanSpider-master\doubanSpider.pyw", line 7, in <module>
import requests
ImportError: No module named requests
2016-07-01 14:24:41 +08:00
回复了 grey5659 创建的主题 问与答 在网上下了一个 python 爬虫程序,怎么运行?
@AnonymousID 不会吧?
2016-07-01 14:15:11 +08:00
回复了 grey5659 创建的主题 问与答 在网上下了一个 python 爬虫程序,怎么运行?
2016-06-30 17:09:26 +08:00
回复了 grey5659 创建的主题 问与答 求推荐学习 sqlserver 的书籍等资料?
@dexterzzz 都是英文的吗?
2016-06-28 10:48:47 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
@SpicyCat 好像不行哦 我昨天在家里电脑上做了修改,今天在公司电脑上直接修改然后提交的时候报错了,好像是说远程仓库和本地不一致什么的
2016-06-28 10:21:21 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
@SpicyCat 我在两台电脑上切换,都是用的 git gui ,流程应该在 a 电脑上改了,换到 b 电脑上要先拉取下来合并,再进行修改才能提交吗
2016-06-28 10:00:45 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
@oxoxoxox /(ㄒoㄒ)/~~菜鸟一个, O(∩_∩)O 谢谢
2016-06-28 09:53:29 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
@oxoxoxox 现在还没有提交,怎么撤回这个操作呢,不然一直在 unstaged changed 里
2016-06-28 09:49:42 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
@oxoxoxox 那肿么办呢
2016-06-28 09:44:38 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
@mahone3297 是不是我使用了 git init 的原因额,怎么恢复到之前的状态呢
2016-06-28 09:41:16 +08:00
回复了 grey5659 创建的主题 问与答 git 怎么这么多莫名其妙的变更?
http://i4.piimg.com/567571/2d15beba7ab91f58.png
都是一些乱七八糟的,看不懂了...
1  2  3  4  5  6  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2579 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 31ms · UTC 02:27 · PVG 10:27 · LAX 18:27 · JFK 21:27
Developed with CodeLauncher
♥ Do have faith in what you're doing.