//1、原型定义如下:
if (!String.prototype.splice) {
String.prototype.splice = function(start, delCount, newSubStr) {
return this.slice(0, start) + newSubStr + this.slice(start + Math.abs(delCount))
}
}
//2、重写后代码如下:
String.prototype.splice = function(idx, rem, str) {
return this.slice(0, idx) + str + this.slice(idx + Math.abs(rem))
}
//3、使用方法:
var result = "foo baz".splice(4, 0, "bar ")
document.body.innerHTML = result
//结果:在 "foo bar"中的第4个位置插入字符串bar ,变成:"foo bar baz"
可以使用prepend(content)方法。概述:向每个匹配的元素内部前置内容。
参数:content, 要插入到目标元素内部前端的内容
function(index, html),返回一个HTML字符串,用于追加到每一个匹配元素的里边。接受两个参数,index参数为对象在这个集合中的索引值,html参数为这个对象原先的html值。