Automatically login to site

I want to be able to log in to a site automatically. For that purpose, i save a copy of login page of that site. Then i enter passsword and user name on this copy in advance. There is a login button on this page. So normally, after typing user name and password, i need to click this button to go to next page. But i want to do this automatically. Here is the related part of the source code:

自动登录到网站

我希望能够自动登录到网站。 为此,我保存该网站的登录页面的副本。 然后我提前在这个副本上输入密码和用户名。 此页面上有一个登录按钮。 所以通常情况下,输入用户名和密码后,我需要点击这个按钮才能进入下一页。 但我想自动执行此操作。 以下是源代码的相关部分: <html> <head> <meta http-equiv="imagetoolbar" content="no"> <link rel="SHORTCUT ICON" href="/favicon.ico"> <SCRIPT&g

How to jump to top of browser page

I'm writing a modal popup and I need the browser to jump to the top of the screen when the open modal button is pressed. Is there a way to scroll the browser to the top using jQuery? You can set the scrollTop , like this: $('html,body').scrollTop(0); Or if you want a little animation instead of a snap to the top: $('html, body').animate({ scrollTop: 0 }, 'fast'); Without animation, you

如何跳到浏览器页面的顶部

我正在编写一个模式弹出窗口,当按下打开的模式按钮时,我需要浏览器跳转到屏幕的顶部。 有没有办法使用jQuery将浏览器滚动到顶部? 你可以像这样设置scrollTop : $('html,body').scrollTop(0); 或者,如果你想要一个小动画而不是顶部的快照: $('html, body').animate({ scrollTop: 0 }, 'fast'); 没有动画,你可以使用普通的JS: scroll(0,0) 有了动画,请检查Nick的答案。 如果您使用的是jQuery UI对话框,则可以

Unable to remove the textbox using javascript

i am facing a problem with removing the textbox using js. i am using below mentioned code <html> <head> <script language=javascript> function addElement() { var ni = document.getElementById('myDiv'); var numi = document.getElementById('theValue'); var num = (document.getElementById('theValue').value -1 + 2); numi.value =

无法使用JavaScript删除文本框

我面临使用js删除文本框的问题。 我正在使用下面提到的代码 <html> <head> <script language=javascript> function addElement() { var ni = document.getElementById('myDiv'); var numi = document.getElementById('theValue'); var num = (document.getElementById('theValue').value -1 + 2); numi.value = num; var newdiv = documen

IE layers issue when dtd with doctype tag is not added

I am facing a very strange issue because of which when i do not add the below line to the html the layers(z-index) is not working. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"; "_http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Please let me know if you are aware of the issue and how to get layers working without adding this tag. Best Re

未添加doctype标记的dtd时,IE层出现问题

我面临一个非常奇怪的问题,因为当我不添加下面的行到html层(z-index)不起作用。 <!DOCTYPE html PUBLIC“ - // W3C // DTD XHTML 1.0 Transitional // EN”; “_http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> 请让我知道你是否知道这个问题,以及如何在不添加这个标签的情况下让图层工作。 最好的问候,Keshav IE(7+)的现代版本具有不同的渲染引擎,并根据用户的偏好和页面的文档类型选择渲染

fix header offsetting an html anchor

I am trying to clean up the way my anchors work. I have a header that is fixed to the top of the page, so when you link to an anchor elsewhere in the page, the page jumps so the anchor is at the top of the page, leaving the content behind the fixed header. My below code is working as i want it to work. The only is issue i am getting with IE8. When I click on a jump link, it jump past it rath

修复标题偏移一个HTML锚点

我正在努力清理锚杆的工作方式。 我有一个固定在页面顶部的标题,因此当您链接到页面中其他位置的页面时,页面会跳转,因此页面位于页面的顶部,并将内容留在固定页眉的后面。 我的下面的代码正在工作,因为我希望它的工作。 唯一的问题是我使用IE8。 当我点击一个跳转链接时,它跳过它而不是正确的位置。 我可以得到任何帮助,以解决这个ie8? <script> ! function(o, n) { var t = function() {

How to add smooth scrolling to Bootstrap's scroll spy function

I've been trying to add a smooth scrolling function to my site for a while now but can't seem to get it to work. Here is my HTML code relating to my navigation: <div id="nav-wrapper"> <div id="nav" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="675"> <div class="navbar-inner" data-spy="affix-top"> <div class="container"> &

如何将平滑滚动添加到Bootstrap的滚动间谍功能

我一直试图在我的网站上添加一个平滑的滚动功能一段时间,但似乎无法让它工作。 以下是我的导航相关的HTML代码: <div id="nav-wrapper"> <div id="nav" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="675"> <div class="navbar-inner" data-spy="affix-top"> <div class="container"> <!-- .btn-navbar is used as the toggle for collapsed navbar c

Anchor click and keeping page position?

In my page there are some anchor that has no link, like this: <a href="#">Anchor</a> When I click anchor that is bottom of the page, Page is scrolling to top. I want to keep page position, if I clicked the link. How Can I do this. (no js is better for me) I hope, I could explain. Thanks in advance. You'll still have to use JS, but you can do it inline: <a href="java

锚点击并保持页面位置?

在我的页面中有一些没有链接的锚点,如下所示: <a href="#">Anchor</a> 当我点击页面底部的锚时,页面将滚动到顶部。 如果我点击链接,我想保留页面位置。 我怎样才能做到这一点。 (没有js对我更好) 我希望,我可以解释。 提前致谢。 你仍然需要使用JS,但是你可以直接使用它: <a href="javascript:void(0);">Test</a>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ 演示:http://jsfid

Make anchor link go some pixels above where it's linked to

I'm not sure the best way to ask/search for this question: When you click on an anchor link, it brings you to that section of the page with the linked-to area now at the VERY TOP of the page. I would like the anchor link to send me to that part of the page, but I would like some space at the top. As in, I don't want it to send me to the linked-to part with it at the VERY TOP, I would

使锚点链接转到它所链接到的某个像素上方

我不确定询问/搜索这个问题的最佳方式: 当您点击一个锚点链接时,它会将您带到页面的该部分,并且现在链接区域位于页面的非常顶部。 我希望锚链接将我发送到页面的那一部分,但我希望顶部有一些空间。 就像在里面,我不希望它把它发送到链接到的部分,在那里我非常喜欢100个像素的空间。 这有意义吗? 这可能吗? 编辑显示代码 - 它只是一个锚标记: <a href="#anchor">Click me!</a> <p id="anchor"&

Custom filter vs filter function in controller performance comparison

Suppose I have an array of 5000 objects (with boolean values) which I have to ng-repeat in the template: $scope.arr = [ { "value": true }, { "value": false }, { "value": false } //and so on ] Now, I want to filter this ng-repeated array on the basis of a dynamic variable, say 'show_filter', which I am setting elsewhere. If 'show_

自定义过滤器与控制器性能比较中的过滤功能

假设我有一个包含5000个对象(带有布尔值)的数组,我必须在模板中ng-repeat : $scope.arr = [ { "value": true }, { "value": false }, { "value": false } //and so on ] 现在,我想根据一个动态变量过滤这个ng-repeated数组,比如我在其他地方设置的'show_filter'。 如果'show_filter'被设置为'all',我想显示所有的对象。 如果它设置为f

How is the default submit button on an HTML form determined?

If a form is submitted but not by any specific button, such as by pressing Enter using HTMLFormElement.submit() in JS how is a browser supposed to determine which of multiple submit buttons, if any, to use as the one pressed? This is significant on two levels: calling an onclick event handler attached to a submit button the data sent back to the web server My experiments so far have

如何确定HTML表单上的默认提交按钮?

如果表单被提交但不是由任何特定的按钮,如 按Enter键 在JS中使用HTMLFormElement.submit() 一个浏览器应该如何确定使用多个提交按钮中的哪一个作为被按下的按钮? 这在两个层面上是重要的: 调用附加到提交按钮的onclick事件处理程序 将数据发送回Web服务器 迄今为止我的实验表明: 当按Enter键时,Firefox,Opera和Safari使用表格中的第一个提交按钮 当按Enter键时,IE根据我无法弄清的情况使用第一个提交按