在值之前添加+

时间:2013-05-15 17:51:30

标签: jquery ajax

我想在值之前添加加号(+)。

代码为:

function todayplus() {
    var url="./get/invoice.php";
    jQuery('+' $ "#todayplus").load(url);
}

结果应为 +某事(加值之前)

1 个答案:

答案 0 :(得分:2)

你的意思是你想要这个吗?

function todayplus() {
    var url="./get/invoice.php";
    $("#todayplus").load(url);
    $("#todayplus").prepend("+");
}