我仍然对“正义与平等倡议”。 我想在另一个<代码><div>内包含链接(作为<span>
)。 此处为<代码><div>下的定义,载于我的超文本:
<div id= TOP >
<div id= TOP_LEFT ><img src="images/Logo_150x50.png"></div>
<div id= TOP_MID ><select id="ffonts"></select></div>
<div id= TOP_RIGHT >
<div id="LOGIN_LINKS">
<span id="login">Login</span>
<span id="registr">Registration</span><br />
<span id="forgotpwd">Forgot Password</span>
<span id="logout">Logout</span>
</div>
</div>
</div>
我试图将(在文件阅读中)立场方法作为以下方法:
$("#"+LOGIN_LINKS).position({
my: "center bottom",
at: "center bottom",
of: "#"+TOP_RIGHT
});
但是,我的联系并没有在底线上调。
Why? What am I doing wrong?
EDIT
在进行更多的测试之后,在每一段之后,我将<代码><br />列入:
<div id="LOGIN_LINKS">
<span id="login">Login</span><br />
<span id="registr">Regist</span><br />
<span id="forgotpwd">Forgot Password</span>
<!-- span id="logout">Logout</span -->
</div>
似乎像对我ug!