Как добавить кнопку на HTML-страницу в MVC с помощью JAVASCRIPT
Как добавить кнопку на HTML-страницу в MVC с помощью JAVASCRIPT???Пожалуйста, помогите скорее
Kornfeld Eliyahu Peter
JoCodes
Что вы пробовали до сих пор?
Что вы пробовали до сих пор?
Привет,
Вы можете использовать приведенную ниже функцию для создания динамического типа ввода с помощью функции Javascript.
$(document).ready(function () {
function add(type) { //Create an input type dynamically. var element = document.createElement("input"); //Assign different attributes to the element. element.type = type; element.value = type; // Really? You want the default value to be the type string? element.name = type; // And the name too? element.onclick = function() { // Note this is a function alert("Demo"); }; var foo = document.getElementById("SpanName"); //Append the element in page (in span). foo.appendChild(element); } document.getElementById("btnAdd").onclick = function() { add("text"); }; <input type="button" id="btnAdd" value="Add Text Field"> <p id="fooBar">Fields:</p>