如何在JQuery中输出变量的值?

时间:2016-01-10 15:59:16

标签: javascript jquery

嗨,我是JQuery的新手,我正在为第一年的uni项目制作基于文本/命令行的游戏等。

我正在尝试创建一个库存功能,我有一个变量,其中包含玩家可以容纳的一个项目。然后,如果用户键入'inhand',我希望输出为'你持有'吸入'。到目前为止,这是我的代码的一部分,但我无法得到变量输出它只是空白。

def test_send_message(self):
    send_message = self.user.send_message(subject="Test subject", message="Test message")
    print send_message  
你可以在倒数第二行看到'你持有'+吸气。这不起作用,但只留下一个空白区域。 感谢

var inhand = "nothing";

//torch
        else if (input == "pickup torch") {
                $('<p>You picked up the torch.</p>').insertBefore("#placeholder").fadeIn(1000);
                inhand = "torch";
        }

        //inhand
        else if (input == "inhand") {
                $('<p>You are currently holding a </p>' + inhand ).insertBefore("#placeholder").fadeIn(1000);
        }

1 个答案:

答案 0 :(得分:0)

我认为

'<p>You are currently holding a </p>' + inhand

应该是

'<p>You are currently holding a '+inhand+'</p>'