2016-07-31 15 views
0

私は<li>要素を持っています.3つのかなり類似したアンカータグがあります。最初の2つはうまくいくはずですが、3番目のものはうまく動作しません。hoverで色が変わりますが、クリックできません。この動作はGoogle Chrome、Firefox、IE11でも似ていますので、おそらくブラウザではありません。私は似たようなページを持っていましたが、以前にこのようなトラブルに遭遇したことはありませんでした。1つのアンカータグが機能しない、類似のアンカータグが動作する

LIVEページがhereで、CTRL +終了は、最終的な<a>が問題であり、最終のコメントにあなたを取得します。 <a &nbsp;href="..."

はそれを削除し、それは以下となります。あなたはこのように、タグの中&nbsp;を持ってa

このセクションのための基本となるHTMLは

<ul id='commentul'> 
 
    <li> 
 
    <img alt='' src='http://1.gravatar.com/avatar/72f74d7bd6a20a2f9dd37e6af9d45850?s=80&#038;d=mm&#038;r=g' srcset='http://1.gravatar.com/avatar/72f74d7bd6a20a2f9dd37e6af9d45850?s=160&amp;d=mm&amp;r=g 2x' class='avatar avatar-80 photo' height='80' width='80' /> \t <h3>By Eszter Babarczy on July 30th, 2016</h3> 
 
    <p>Hi! I ran the dialogue with 21 variables using their names. The program insists these are string variables (although they are set to scale). What am I doing wrong? Thanks a lot in advance!</p> 
 
    </li><!-- #comment-## --> 
 
    <li> 
 
    <img alt='' src='http://0.gravatar.com/avatar/3bd63d9e0384df2d2e5cc82890712aaa?s=80&#038;d=mm&#038;r=g' srcset='http://0.gravatar.com/avatar/3bd63d9e0384df2d2e5cc82890712aaa?s=160&amp;d=mm&amp;r=g 2x' class='avatar avatar-80 photo' height='80' width='80' /> \t <h3>By <a href='http://www.spss-tutorials.com/about-us/' rel='nofollow'>Ruben Geert van den Berg</a> on July 31st, 2016</h3> 
 
    <p>Hi Eszter!</p> 
 
    <p>Try and run <a href="http://www.spss-tutorials.com/spss-descriptives-command/" rel="nofollow">DESCRIPTIVES</a> on all relevant variables. SPSS will (rightfully) refuse to generate descriptives for string variables and throw a warning.</p> 
 
    <p>Now, in SPSS, you can have string variables set to scale. It doesn't make sense, though. "Scale" in SPSS means that you're dealing with a metric variable (the <a href="http://www.spss-tutorials.com/measurement-levels/">measurement level</a> is interval or ratio). </p> 
 
    <p>The defining characteristic of metric variables is that numeric calculations (sum, mean) are meaningful for them and such calculations are not possible on string variables. So we usually see that "scale" is only used for numeric variables whereas all string variables are set to nominal but perhaps this doesn't hold for your data.</p> 
 
    <p>A tiny example illustrating this point is <a href="http://www.spss-tutorials.com/spss-syntax-examples/no-descriptives-for-metric-string-variable.html">No Descriptives for Metric String Variable</a>. If that doesn't hold for your data, please get back at me, ok?</p> 
 
    </li><!-- #comment-## --> 
 
</ul><!-- id='commentul'> -->
最後のアンカーで

+0

それは現在のページ番号です、実際には私はスパンではなく、hrefである。 –

答えて

1

です仕事

+0

ありがとうございました!私は ' 'がGoogle Chromeのソースコードのどこにも見当たらなかった。しかし、**私はWordpress UIの(単一の)スペースを削除し、それを元に戻し**、コメントを更新しました。それは問題を解決しました - しかし、私はまだ物事が最初からうまくいかなかったのを実際に見ていません。 – RubenGeert

関連する問題