我有以下链接
<section class="col-sm-12 les_navigation">
<a id="home" href="">Home</a>
<a id="about" href="">About</a>
<a id="resume" href="">Resume</a>
<a id="portfolio" href="">Portfolio</a>
<a id="blog" href="">Blog</a>
<a id="contact_me" href=""></a>
</section>
并且最后一个链接具有空白名称属性
<a id="contact_me" href=""></a>
我想在每个窗口上附加当前宽度,并使用此代码调整大小
$( window ).resize(function() {
var current_width = $('.les_body').width();
$('#contact_me').attr('name',current_width);
});
但是,没有附加新的宽度。我该怎么办?
答案 0 :(得分:0)
使用此
$( window ).resize(function() {
var current_width = $('.les_body').width();
$('#contact_me').attr('href',current_width);
});
答案 1 :(得分:0)
尝试此配合,如果您需要更换href。您的name
<a id="contact_me" href=""></a>
的属性
$( window ).resize(function() {
var current_width = $('.les_body').width();
$('#contact_me').attr('href',current_width);
//如果您需要替换文字,请尝试
// $('#contact_me').text(current_width);
//如果您希望{h}标记的append
值为。如果您的current href is contact
和宽度为400
,那么您的新href
将为{{} 1}}
contact400