简体   繁体   English

使用 JavaScript/jQuery 中的按钮单击动态添加 div

[英]Adding div dynamically using button click in JavaScript / jQuery

How do I dynamically add div on button click in JavaScript/jQuery?如何在 JavaScript/jQuery 中点击按钮时动态添加 div? I want all the formatting of div having class "listing listing_ad job".我想要所有具有类“listing listing_ad job”的 div 格式。

This is my code which I tried out, using jQuery.这是我使用 jQuery 尝试的代码。

 $('#btnAddtoList').click(function(){ var newDiv = $('<div class="listing listing_ad job"><h4><a>Some text</a></h4> </div>'); //newDiv.style.background = "#000"; document.body.appendChild(newDiv); });
 .listing { border-bottom: 1px solid #ddd; float: left; padding: 0 0 5px; position: relative; width: 559px; } .listing:hover { background: #f5f5f5 none repeat scroll 0 0; border-bottom: 1px solid #ddd; cursor: wait; } a:hover { color: #ff5050; } .subtitle { width: 430px; font-weight: normal; font-size: 12px; font-family: Arial; color: #7f7f7f; } .info { float: left; margin: 10px 15px 5px; min-width: 500px; clear: both; color: #7f7f7f; margin: 15px 44px 15px 0; overflow: hidden; }
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <button id="btnAddtoList"> Add to list </button> <div class="listing listing_ad job"> <h4> <a> Excellent Opportunity For Internship at Diamond </a> </h4> <div class="subtitle"> Lahore, Punjab </div> <div class="info"> This is Info / Description. </div> </div> <!-- ************************ --> <div class="listing listing_ad job"> <h4> <!-- Src: http://jobs.mitula.pk/internship-program-lahore-jobs --> <a> Excellent Opportunity For Internship at Diamond </a> </h4> <div class="subtitle"> Lahore, Punjab </div> <div class="info"> This is Info / Description. </div> </div>
Jsfiddle: http://jsfiddle.net/mr4rngbL/3/ jsfiddle: http : //jsfiddle.net/mr4rngbL/3/

Yes, you can easily add a div on button click in jQuery.是的,您可以轻松地在 jQuery 中单击按钮时添加 div。 First, set up the click listener:首先,设置点击监听器:

$('button').on('click', addDiv);

Then, create the function to add the div (here, the div is being added to the element with the class of container):然后,创建添加 div 的函数(这里,div 被添加到具有容器类的元素):

function addDiv() {
    $('.container').append('<div>').addClass('listing listing_ad job');
}

I hope this is helpful.我希望这是有帮助的。

Yes, you can - by added jQuery to the script of the document, and wrpping the code in document.ready是的,您可以 - 通过将 jQuery 添加到文档的脚本中,并在document.ready包装代码

$(function() {
    $('#btnAddtoList').click(function(){
        var newDiv = $('<div class="listing listing_ad job"><h4><a>Some text</a></h4> </div>');
      //newDiv.style.background = "#000";
       $('body').append(newDiv);
    });
});

Example http://jsfiddle.net/mr4rngbL/5/示例http://jsfiddle.net/mr4rngbL/5/

Example for what you've asked in the comment: http://jsfiddle.net/mr4rngbL/6/您在评论中询问的示例: http : //jsfiddle.net/mr4rngbL/6/

And LAST example based on your request in the comment: http://jsfiddle.net/mr4rngbL/7/以及基于您在评论中的请求的最后一个示例: http : //jsfiddle.net/mr4rngbL/7/

Here Pure JavaScript Solution这里纯 JavaScript 解决方案

 function addDiv(parent_div, content, attrs) { var div = document.createElement('div'); var parent = document.getElementById(parent_div); for (var key in attrs) { if (attrs.hasOwnProperty(key)) { div.setAttribute(key, attrs[key]); } } div.innerHTML = content; if (parent) { parent.appendChild(div); } } var button = document.getElementsByTagName('button')[0]; if (button) { button.addEventListener('click', function() { // change dynamically your new div addDiv('parent', 'hi', { 'class': 'someclass someclass', 'data-attr': 'attr' }); }); }
 <button>Add Div</button> <div id="parent"> </div>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM