1

如何在不使用“+”号的情况下使用 jQuery 执行以下操作?

var appendToResult = "<h4>Whoops, we noticed something.</h4><ul>";

    appendToResult = appendToResult+"<li><p>Please enter your Current Password.</p></li><li><p>Please enter a New Password.</p></li>";
4

2 回答 2

4

如果您只是在寻找一种不使用加号来连接字符串的方法,这里有一种方法,不需要 jQuery:

var arr = ['text thing 1', 'other text', 'more text', 'etc'];
var str = arr.join(' ');

如果您有一个 jQuery 对象,您正在尝试向其附加文本,您可以这样做:

var myObj = $('.myclass');
myObj.append('my appended text here');
于 2013-01-08T22:37:42.443 回答
2

或者...

var appendToResult = "<h4>Whoops, we noticed something.</h4><ul>";
appendToResult = appendToResult.concat("<li><p>Please enter your Current Password.</p></li><li><p>Please enter a New Password.</p></li>");

您对从未伤害过任何人的温和加号感到不满的确切原因是什么?

于 2013-01-08T22:41:32.953 回答