si Considerando hanno seguente codice HTML:
<input type="text" class="myclasses" style="color: #123123" value="akira"/>
quindi utilizzando seguente frammento di codice:
(function($) {
$.fn.changeToTextArea = function(rows, columns) {
var attrs = {};
var text = "";
$.each(this[0].attributes, function(idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
if(attr.nodeName == "value") {
text = attr.nodeValue;
}
attrs["rows"] = rows;
attrs["cols"] = columns;
});
this.replaceWith(function() {
return $("<textarea/>", attrs).append($(this).contents()).html(text);
});
}
})(jQuery);
si dovrebbe chiamare con
$("input").changeToTextArea(7, 25);
(function($) {
$.fn.changeToTextArea = function(rows, columns) {
var attrs = {};
var text = "";
$.each(this[0].attributes, function(idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
if(attr.nodeName == "value") {
text = attr.nodeValue;
}
attrs["rows"] = rows;
attrs["cols"] = columns;
});
this.replaceWith(function() {
return $("<textarea/>", attrs).append($(this).contents()).html(text);
});
}
})(jQuery);
$("input").changeToTextArea(7, 25);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<input type="text" class="xyzxterms" style="color: #123131" value="akira"/>
Il termine "casella di testo" non è sufficientemente specifico. Questo sembra essere specifico per ASP.NET. jQuery non lo capisce. Comprende solo HTML. Non intendi HTML '' o forse '
@BalusC Lo interpreterei come trasformando un 'input type = text' in' textarea'. Penso che ciò possa essere fatto distruggendo l'input e creando una textarea con lo stesso nome. –
@Pekka: vero, ma c'è un'ambiguità nel termine e ho giudicato quello basato sulla posthistoria dell'OP. Può succedere che abbia già un '