小编Kha*_*ara的帖子

HTML5音频播放列表 - 如何在第一个音频文件结束后播放第二个音频文件?

在另一个完成后,我们怎样才能在html5播放中制作一些音频?

我尝试过使用jquery delay()函数,但它根本不工作,是否可以pause()在html5音频中使用定时器?例如,pause('500',function(){});

javascript audio jquery html5 html5-audio

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

使用Actionscript 3在一个文本字段中的两种颜色

是否可以使用Actionscript 3.0在一个文本字段中使用两种文本颜色?

例如:我怎么能像第一个字符串黑色和第二个字符串红色?

使用单一颜色时,这是我的代码:

    public function logs(txt)
    {
        if (txt == '')
        {
            textLog.text = "Let's Open up our treasure boxes !!!";
        }
        else
        {
            textLog.text = '' + txt + '';
        }
        textLog.x = 38.60;
        textLog.y = 60.45;
        textLog.width = 354.50;
        textLog.height = 31.35;
        textLog.selectable = false;
        textLog.border = false;
        var format:TextFormat = new TextFormat();
        var myFont:Font = new Font1();
        format.color = 0x000000;
        format.font = myFont.fontName;
        format.size = 18;
        format.align = TextFormatAlign.CENTER;
        format.bold = false;
        textLog.embedFonts = true;
        textLog.setTextFormat(format); …
Run Code Online (Sandbox Code Playgroud)

actionscript-3

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

带有阅读器模式的 Android WebView

我只是想知道我们可以在我们的 Android WebView 中使用 Chrome 功能吗?我很好奇,当我们在 webview 中加载一些 url(如口袋、可读性或 instapaper)时,我们是否可以在 WebView 上添加铬阅读器模式功能,或者有一些基础知识可以这样做?

android webview

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

将Jquery Ajax结果附加到现有表

我需要将ajax请求结果放到现有表中,怎么做?这是我的ajax请求

$("input#order").click(function(){
    var idmenu  = $("#idmenu").val();
    var menu    = $("#idmenu :selected").text();
    var qty     = $("#qty").val();

    $.ajax({
        type    :'POST',
        url     :'<?php echo base_url();?>index.php/welcome/process',
        data    :'idmenu='+idmenu+'&menu='+menu+'&qty='+qty,
        beforeSend:function(){
            $("#result").html('<img src="<?php echo base_url();?>assets/loading.gif"/>');
        },
        success:function(result){
            //result is json format
        }
    });

});
Run Code Online (Sandbox Code Playgroud)

这是来自ajax请求的json格式

{"itemname":"product1","qty":"3","prices":"4500"}
Run Code Online (Sandbox Code Playgroud)

这是我的表格格式

<table class="list-order">
    <tr>
        <th class="order">order</th>
        <th class="qty">qty</th>
        <th class="pice">price</th>
    </tr>
    //how to append ajax result here
    <tr>
        <td colspan="2"></td>
        <td align="right"><input type="submit"  size="25" id="process" value="Proses"/></td>
    </tr>
</table>
Run Code Online (Sandbox Code Playgroud)

我想追加ajax的结果

<tr>
    <td></td>
    <td></td>
    <td></td>
</tr>
Run Code Online (Sandbox Code Playgroud)

而不是在标签里面,比如

<tr>
   <td>result is not here</td> …
Run Code Online (Sandbox Code Playgroud)

ajax jquery append

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