Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

Availability


Netscape 3, Internet Explorer 4


Synopsis

public Object call(String methodName, Object args[])

Arguments


methodName

The name of the JavaScript method to be invoked.

args[]

An array of Java objects to be passed as arguments to the method.


Returns


A Java object that represents the return value of the JavaScript
method.


Description


The call( ) method of the Java JSObject class
invokes a named method of the JavaScript object represented by the
JSObject. Arguments are passed to the method as an array of Java
objects, and the return value of the JavaScript method is returned as
a Java object.

Chapter 22 describes the data conversion of the
method arguments from Java objects to JavaScript values and the
method return value from a JavaScript value to a Java object.

/ 844