如何将一些文本附加到变量?

时间:2014-11-08 16:22:37

标签: javascript jquery

我正在使用jquery,我需要在变量中添加一些文本:

$("document").ready(function(){
  var i="this is text";
$(i).append("aa");
  alert(i);
})

DEMO

1 个答案:

答案 0 :(得分:1)

你当然可以为这个

创建一个jQuery插件



$.fn.appendString = function(str) {
    return this.selector + str;
}

$(document).ready(function(){
    var i = "this is text";

    alert( $(i).appendString("aa") );
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
&#13;
&#13;
&#13;


但它是一致的字符串

var i = "this is text";

i = i + "aa"; // it's now "this is textaa"

请注意$("this is text")并不是真正有效的东西,jQuery并不真正处理字符串