此post与我的问题类似。但是,在我的情况下,它没有用。
我有一个文本框,我允许用户粘贴或输入网址。当点击分享按钮时,它将在文本框上共享该URL。
<div class="sharewrapurl">
<div id="shareurl_validation" style="display: none"> </div>
<input type="text" id="shareviaurl_url" class="textbox_with_url" name="shareviaurl_url" placeholder="Paste URL here.">
<div class="shareurlbutton">
<span id="fb_ut_urlshare" style="width:100px;"><span class="st_facebook_large" st_url="http://santosh-shah.com" st_title="#DVDNation #ad #DVD20" onclick="social_share_url(appConfig.FacebookPostWidgetConfigId)"></span></span>
<span id="tw_ut_urlshare" style="width:100px;"><span class="st_twitter_large" st_url="s" st_title="#DVDNation #ad #DVD20" onclick="social_share_url(appConfig.TwitterPostWidgetConfigId)"></span></span>
</div>
<!-- /.shareurlbutton -->
</div>
如果我直接点击facebook分享,那么它将分享我st_url
中的域名,但我想用输入框值更新该属性。
$('#shareviaurl_url').on('input propertychange paste', function() {
var url = $("#shareviaurl_url").val();
$("#shareurlbutton").find("#st_facebook_large").attr("st_url",url);
console.log($("#shareurlbutton").find("#st_facebook_large").attr("st_url"));//returns undefined.
});
答案 0 :(得分:3)
您正在使用ID选择器(#
)而不是类选择器(.
)。这是工作版本:
$('#shareviaurl_url').on('input propertychange paste', function() {
var url = $('#shareviaurl_url').val();
$('.shareurlbutton').find('.st_facebook_large').attr('st_url', url);
console.log($('.shareurlbutton').find('.st_facebook_large').attr('st_url'));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="sharewrapurl">
<div id="shareurl_validation" style="display: none"> </div>
<input type="text" id="shareviaurl_url" class="textbox_with_url" name="shareviaurl_url" placeholder="Paste URL here.">
<div class="shareurlbutton">
<span id="fb_ut_urlshare" style="width:100px;"><span class="st_facebook_large" st_url="http://santosh-shah.com" st_title="#DVDNation #ad #DVD20" onclick="social_share_url(appConfig.FacebookPostWidgetConfigId)"></span></span>
<span id="tw_ut_urlshare" style="width:100px;"><span class="st_twitter_large" st_url="s" st_title="#DVDNation #ad #DVD20" onclick="social_share_url(appConfig.TwitterPostWidgetConfigId)"></span></span>
</div>
</div>
干杯。 :)