我只是想知道是否可以得到一些指示。
如果根据是否切换 div 来更改文本,我正在使用速记。
这就是我为文本转换器所拥有的:
$(this).text($(this).text() == 'Email Me' ? 'Close Form' : 'Email Me');
我想按照这些思路更改锚的标题属性。我已经使用以下方法进行了尝试:
$(this).text($(this).attr('title', == 'Email Me' ? 'Close Form' : 'Email Me')); //This throws up syntax errors in firebug because of where the == is placed
我也试过如下:
$(this).text($(this).attr('title') == 'Email Me' ? 'Close Form' : 'Email Me'); //This doesn't change the attribute at all.
我想我可能只是很愚蠢,但我无法弄清楚这一点。我已经用谷歌搜索了它,但我似乎无法找到明确的答案。
只是想知道你是否对我可能出错的地方有任何建议。
提前致谢