所以我意识到撇号给出了"'"
,
我有一个JS做了以下:
$(document).ready(function () {
$('#share_buttont@(number)').click(function () {
var loc = $(this).attr('href');
window.open('http://twitter.com/share?url=' + loc + '&text=' + "@item.Title. News via www.test.com" + '&', 'twitterwindow', 'height=450, width=550, top=' + ($(window).height() / 2 - 225) + ', left=' + $(window).width() / 2 + ', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
});
});
如果@item.Title
包含" 'Flying' boat to smash record? "
,带有撇号的文字会破坏twitter分享框内的文字。撇号变为'
。
有没有什么好方法可以解决这个问题,还是我需要删除文本中的所有撇号?在JS脚本触发之前?