質問

I have a custom VisualForce page and would like via javascript to get the url to create a new account/contact.

I know I can do the following in the main apex code but I want to do something dynamically. Create New Account

What is the easiest way to get the url to create a new object via javascript?

役に立ちましたか?

解決

You can use this code in Javascript (if your script tag is inside a visualforce page):

var newAccountEndpoint = '{!URLFOR($Action.Account.New)}';
var newOpptyEndpoint = '{!URLFOR($Action.Opportunity.New)}';

Or as I stated before refer to pre made list of standard salesforce object prefixes

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top