从我的Chrome扩展程序登录网页

时间:2011-05-09 16:28:30

标签: javascript asp.net web-services asmx google-chrome-extension

大家晚上好, 我希望你们都感觉很棒。我想从我的Google Chrome扩展程序登录网页。并且该网页未在后台标签中运行。所以任何想法?

我的网站使用常规登录系统。以下是调用Web服务的代码。

$(document).ready(function () {

$('#submit').click(function() {

$.ajax(
{

type: "POST",
url: "http://localhost:1204/ChromeExtensionService.asmx/HelloWorld",
//data: '{"id":"' + currentObjId.toString() + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {

alert('here');
alert(msg.d);
},

error: function (xhr, textStatus, errorThrown) {

alert(xhr.responseText);
}

此致 伊斯梅尔

1 个答案:

答案 0 :(得分:0)

如果您询问如何模拟登录表单提交,请参阅this answer