我正在使用jquery,我需要在变量中添加一些文本:
$("document").ready(function(){
var i="this is text";
$(i).append("aa");
alert(i);
})
答案 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;
但它是一致的字符串
var i = "this is text";
i = i + "aa"; // it's now "this is textaa"
请注意$("this is text")
并不是真正有效的东西,jQuery并不真正处理字符串