问题列表 - 第45312页

尝试使用jQuery添加iframe

我正在尝试使用jquery以下方式添加iframe,但是当我点击链接时它不会发生任何事情.

<head>

    <script type="text/javascript"
            src='//ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js'></script>

    <script type="text/javascript">

        function fun(){
            $('<iframe />');  // Create an iframe element
            $('<iframe />', {
                name: 'frame1',
                id: 'frame1',
                src: 'http://www.programmingfacts.com'
            }).appendTo('body');

    </script>

    </head>

    <body>

        <a href="#" onclick="fun()">clica</a>

    </body>

</html>
Run Code Online (Sandbox Code Playgroud)

iframe jquery

4
推荐指数
2
解决办法
3万
查看次数

我可以在Vim的同一个文件中同时使用Python和SQL语法高亮显示吗?

我在Python程序中使用多行字符串进行SQL查询.

有没有办法告诉Vim在其中应用不同的突出显示规则,可能是使用--SQL标记?

vim syntax-highlighting

9
推荐指数
1
解决办法
1695
查看次数

如何在Linux中的进程之间交换二进制数据

我需要创建一个可以进行无线网络扫描的linux应用程序,将结果放入一个结构中并以某种方式将其发送到另一个将使用该数据的主应用程序.我最初的想法是在主应用程序中创建一个管道,fork并通过execl启动另一个进程,它可以写入管道.像这样的东西:

pid_t pid = NULL;
int pipefd[2];
FILE* output;
char line[256];

pipe(pipefd);
pid = fork();
if (pid == 0)
{
// Child
  close(pipefd[0]);
  dup2(pipefd[1], STDOUT_FILENO);
  dup2(pipefd[1], STDERR_FILENO);
  execl("/sbin/wifiscan", "/sbin/wifiscan", (char*) NULL);
}

//Only parent gets here. Listen to what the wifi scan says
close(pipefd[1]);
output = fdopen(pipefd[0], "r");

while(fgets(line, sizeof(line), output))
{
//Here we can listen to what wifiscan sends to its standard output
}
Run Code Online (Sandbox Code Playgroud)

但是,如果输出中出现二进制0,则无法使用二进制数据.所以我可以将wifiscan应用程序的输出格式化为文本,将其发送到管道并在主应用程序中解析,或者以我还不知道的更智能的方式进行.

在Linux中的进程之间可靠地交换数据的其他方法是什么?

c linux posix fork

6
推荐指数
1
解决办法
1720
查看次数

VBA数据层错误处理

我有一些遗留的Excel文件,包含大量对存储过程和数据库连接的调用,所有这些都是以记录集的旧方式完成的...

因为在VBA中没有try-catch的概念 - 最终在.NET中有什么最佳实践可以应用于拥有更加可靠的数据访问层?我想有一个很好的例子,说明如何打开连接,执行需要一些参数的存储过程,然后在任何情况下成功或错误,关闭连接并释放资源.

vb6 error-handling excel vba

4
推荐指数
1
解决办法
1175
查看次数

如何从网页中提取javaScript代码?

我要重构一堆包含html和javascript代码混合的html文件.我想隔离javascript代码以便能够使用各种工具(例如gjslint).

有自动执行此操作的工具吗?(我确实搜索了但是找不到任何东西,可能使用错误的术语.)

谢谢...

html javascript

3
推荐指数
1
解决办法
1万
查看次数

如何使用OutputDebugString打印字符串变量中的消息?

我最近不得不在一些Delphi代码中做一些更改.因此,我有一些基本问题:

  1. 通常,我如何输出到控制台?
  2. 如何fx使用字符串变量输出到控制台?

我开始使用OutputDebugString,但我无法使用变量.

delphi string variables

13
推荐指数
1
解决办法
4万
查看次数

编写Console.Out到不同的输出文件

我试图使用重定向Console.Out到两个文本文件Console.SetOut.

Console.SetOut(File.CreateText("c:\\del1.txt"));
Console.WriteLine(string1);
...
Console.SetOut(File.CreateText("c:\\del2.txt"));
Console.WriteLine(string2);
Run Code Online (Sandbox Code Playgroud)

通过此重定向,可以创建两个文本文件,而不包含任何数据.如果我注释掉第二个重定向,这工作正常.如何使用输出将输出重定向到不同的文件Console.SetOut.

Edit1:程序终止没有任何错误,这是否可以保证所有文件流都被关闭和刷新?

编辑2:感谢每一位回复了我的问题的人,我能够找到解决方案,不用更改代码并添加两行来关闭文件流. Console.Out.Close();

任何人都可以解释为什么程序终止后文件流没有关闭和刷新?

c# stdout

3
推荐指数
1
解决办法
2713
查看次数

多次读取值或第一次作为变量存储?

基本上,更好的做法是在第一次运行时将值存储到变量中,还是继续使用该值?代码将更好地解释它:

TextWriter tw = null;
if (!File.Exists(ConfigurationManager.AppSettings["LoggingFile"]))
{
   // ...
   tw = File.CreateText(ConfigurationManager.AppSettings["LoggingFile"]);
}
Run Code Online (Sandbox Code Playgroud)

要么

TextWriter tw = null;
string logFile = ConfigurationManager.AppSettings["LoggingFile"].ToString();
if (!File.Exists(logFile))
{
    // ...
    tw = File.CreateText(logFile);
}
Run Code Online (Sandbox Code Playgroud)

c# variable-assignment

5
推荐指数
1
解决办法
289
查看次数

在JAXB中控制名称空间前缀

jaxb如何确定编组对象的命名空间前缀声明列表?我使用xjc为ebics(ebics schema)编译java类.当我为ebicsRequest创建一个实例时,它看起来像这样:


<?xml version="1.0" encoding="UTF-16"?>
<ns2:ebicsRequest xmlns:ns2="http://www.ebics.org/H003" Revision="1" Version="H003" xmlns="http://www.ebics.org/H003" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:ns4="http://www.ebics.org/S001" xmlns:ns5="http://www.ebics.org/H000">
    <ns2:header authenticate="true">
        <ns2:static>
            <ns2:HostID>SIZBN001</ns2:HostID>
            <ns2:Nonce>A5488F43223063171CA0FA59ADC635F0</ns2:Nonce>
            <ns2:Timestamp>2009-08-04T08:41:56.967Z</ns2:Timestamp>
            <ns2:PartnerID>EBICS</ns2:PartnerID>
            <ns2:UserID>EBIX</ns2:UserID>
            <ns2:Product Language="de">EBICS-Kernel V2.0.4, SIZ/PPI</ns2:Product>
            <ns2:OrderDetails>
                <ns2:OrderType>FTB</ns2:OrderType>
                <ns2:OrderID>A037</ns2:OrderID>
                <ns2:OrderAttribute>OZHNN</ns2:OrderAttribute>
                <ns2:StandardOrderParams/>
            </ns2:OrderDetails>
            <ns2:BankPubKeyDigests>
                <ns2:Authentication Algorithm="RSA" Version="X002">...</ns2:Authentication>
                <ns2:Encryption Algorithm="RSA" Version="E002">...</ns2:Encryption>
            </ns2:BankPubKeyDigests>
            <ns2:SecurityMedium>0000</ns2:SecurityMedium>
            <ns2:NumSegments>1</ns2:NumSegments>
        </ns2:static>
        <ns2:mutable>
            <ns2:TransactionPhase>Initialisation</ns2:TransactionPhase>
        </ns2:mutable>
    </ns2:header>
    <ns2:AuthSignature>
        <ds:SignedInfo>
            <ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
            <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/>
            <ds:Reference URI="#xpointer(//*[@authenticate='true'])">
                <ds:Transforms>
                    <ds:Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
                </ds:Transforms>
                <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/>
                <ds:DigestValue>CSbjPbiNcFqSl6lCI1weK5x1nMeCH5bTQq5pedq5uI0=</ds:DigestValue>
            </ds:Reference>
        </ds:SignedInfo>
        <ds:SignatureValue>...</ds:SignatureValue>
    </ns2:AuthSignature>
    <ns2:body>
        <ns2:DataTransfer>
            <ns2:DataEncryptionInfo authenticate="true">
                <ns2:EncryptionPubKeyDigest Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" Version="E002">dFAYe281vj9NB7w+VoWIdfHnjY9hNbZLbHsDOu76QAE=</ns2:EncryptionPubKeyDigest>
                <ns2:TransactionKey>...</ns2:TransactionKey>
            </ns2:DataEncryptionInfo>
            <ns2:SignatureData authenticate="true">...</ns2:SignatureData>
        </ns2:DataTransfer>
    </ns2:body> …
Run Code Online (Sandbox Code Playgroud)

java xml jaxb xml-namespaces

8
推荐指数
2
解决办法
3万
查看次数

如何在实体框架中具有映射到可空数据库列的值类型?

我有以下实体模型:

public class Todo  
{  
    [Required]  
    public int ID { get; set; }  
    public int OrderId { get; set; } //Not required  
    public string Description { get; set; }  
    public bool Finished { get; set; }  
    public DateTime CreationDate { get; set; }  
    public int Priority { get; set; } //Not required  
    public string CreatedBy { get; set; }  
    public bool Deleted { get; set; }  
}
Run Code Online (Sandbox Code Playgroud)

在相应的数据库表中,所有字段都创建为"not null".我想允许一些字段为空.我该怎么做呢?

c# entity-framework nullable

1
推荐指数
1
解决办法
6163
查看次数