如何使用jquery连接html字符串

时间:2013-01-08 22:33:20

标签: jquery

如何使用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>";

2 个答案:

答案 0 :(得分:2)

如果您只是在寻找一种不使用加号来连接字符串的方法,那么这是一种方法,不需要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');

答案 1 :(得分: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>");

你对温和的加号感到不满的原因究竟是什么,从来没有人伤害过什么?