更改为用户点击的链接

更改为用户点击的链接

本文介绍了将iframe的'src'更改为用户点击的链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! HI 我在网页设计方面非常新,我想更改 iframe 用户点击。 假设用户在主菜单中单击了登录链接,他在网站块中看到了登录表单,还有其他菜单链接... 这是我的HTML代码: < li > < a href = ? id = iframe önclick = getURL(); > 登录< / a > < / li > 和它的JavaScript代码: function getURL(){ var urlname = document.getElementById( iframe)。getAttribute( href); $(' iframe')。attr(' src',urlname); 但是它无法正常工作: 优先:我不知道在 iframe中设置 href 的内容 和Javascript代码帮助...... 谢谢......:)解决方案 HII am very new in web designing,I want to change source URL of iframe by user clicking.Suppose user clicked Login link in main menu,and he see the Login form in block of site ,And also for other menu links...here is my html code:<li><a href="?" id="iframe" önclick="getURL();">Login</a></li>and it's JavaScript code :function getURL() { var urlname = document.getElementById("iframe").getAttribute("href"); $('iframe').attr('src', urlname);but it didn't work correctly :first: I do't know what set href in iframeand help in Javascript code...Thank you ...:) 解决方案 这篇关于将iframe的'src'更改为用户点击的链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-18 22:52