尝试在Chrome和Firefox中的文本框中添加数据。 获取错误:SCRIPT438:对象不支持属性或方法'prepend' 在IE11和Edge中。 THX
function init_TGs(){
if (confirm("Initialize TinyG's?")){
$.ajax({
type: 'POST',
url: "init_TGs",
data: 'None',
success: function(result){
if (result != ''){
var rslt= result;
var item = document.getElementById('TextArea1');
item.prepend(rslt);
}}
});
}};
答案 0 :(得分:1)
https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/prepend#Browser_compatibility Prepend不支持IE和edge。 而不是Prepend只是尝试用其他功能重写业务逻辑。
答案 1 :(得分:1)
IE和Edge不支持javascript prepend方法,因此要使prepend方法正常工作,您需要使用polyfill。
(function (arr) {
arr.forEach(function (item) {
if (item.hasOwnProperty('prepend')) {
return;
}
Object.defineProperty(item, 'prepend', {
configurable: true,
enumerable: true,
writable: true,
value: function prepend() {
var argArr = Array.prototype.slice.call(arguments),
docFrag = document.createDocumentFragment();
argArr.forEach(function (argItem) {
var isNode = argItem instanceof Node;
docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem)));
});
this.insertBefore(docFrag, this.firstChild);
}
});
});
})([Element.prototype, Document.prototype, DocumentFragment.prototype]);
用法
document.getElementById("some_id").prepend(Element-you-want-to-prepend)
有关更多信息,请检查
https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/prepend#Polyfill
答案 2 :(得分:0)
好的,使用jquery。简单的解决方案:
$(document).ready(function(){
$('#button-sel').on('click', function(event) {
var targ = event.target.id;
//alert("You clicked on: " + targ);
$.ajax({
type: 'POST',
url: targ,
data: 'none',
success: function(result){
if (result != ''){
var rslt= result;
$('#TextArea1').prepend(result);
}}
});
});})
答案 3 :(得分:0)
或者,您可以使用supported by all browsers的insertBefore
函数来代替添加新的polyfill:
var rslt= result;
var item = document.getElementById('TextArea1');
item.insertBefore(rslt, item.childNodes[0]);