显示和隐藏订单列表
字符串+
如果用户单击+号我想显示一些订单列表
然后字符串-
如果用户单击-号我想隐藏订单列表
如何使用javascript实现此目的,而不是使用ajax,jquery
String +
if user click the + sign i want to show some oder list
then String -
If the user click the - sign i want to hide order list
How to acheive this with javascript , not using ajax , jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须为有序列表创建一个 id,例如
,然后在 javascript 上
,然后在
anchor
标记PS 上......我只是无序地进行了一个粗略的实现.. ..
You will have to create an id for the ordered list, e.g.
then on javascript
then on
anchor
tagPS....I just did a rough implementation in no order....
尝试这个并将其附加到您的任何事件,即 onclick、onmouseover 等...:
此方法可用于您想要显示/隐藏的任何内容。显然,您可以将函数和变量命名为您喜欢的任何有意义的内容......
try this and attached it to your any event, i.e. onclick, onmouseover, etc...:
This method can be used for anything you want to show/hide. Obviously, you can call the function and variable anything you like that makes sense...